Salome HOME
Bug correction
[tools/medcoupling.git] / src / RENUMBER / RenumberingFactory.hxx
index 7006d730abddbff3ed705bc2d1aad6a887768d3e..8e3b65d399c6617524001c4be047fe2ac19ca896 100644 (file)
@@ -1,9 +1,9 @@
-// Copyright (C) 2007-2013  CEA/DEN, EDF R&D
+// Copyright (C) 2007-2016  CEA/DEN, EDF R&D
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Lesser General Public
 // License as published by the Free Software Foundation; either
-// version 2.1 of the License.
+// version 2.1 of the License, or (at your option) any later version.
 //
 // This library is distributed in the hope that it will be useful,
 // but WITHOUT ANY WARRANTY; without even the implied warranty of
 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
 //
 
-#ifndef RENUMBERINGFACTORY_HXX_
-#define RENUMBERINGFACTORY_HXX_
+#ifndef __RENUMBERINGFACTORY_HXX__
+#define __RENUMBERINGFACTORY_HXX__
 
-#include <string>
 #include "RENUMBERDefines.hxx"
 #include "RENUMBER_Renumbering.hxx"
 
+#include <string>
+
 namespace MED_RENUMBER
 {
   RENUMBER_EXPORT Renumbering* RenumberingFactory(const std::string& s);
+  RENUMBER_EXPORT std::vector<std::string> RenumberAvailableMethods();
+  RENUMBER_EXPORT std::vector<std::string> AllRenumberMethods();
+  const char METIS_ALG[]="Metis";
+  const char BOOST_ALG[]="Boost";
 }
 
 #endif /*RENUMBERINGFACTORY_HXX_*/