]> SALOME platform Git repositories - tools/medcoupling.git/blobdiff - src/RENUMBER/RENUMBER_Renumbering.hxx
Salome HOME
refactor!: remove adm_local/ directory
[tools/medcoupling.git] / src / RENUMBER / RENUMBER_Renumbering.hxx
index 13dd07215456ec23402fcc23b4aa70af13d6a0cc..7742218a69b1cf9230736cecbe12afaba59723fc 100644 (file)
@@ -1,9 +1,9 @@
-// Copyright (C) 2007-2013  CEA/DEN, EDF R&D
+// Copyright (C) 2007-2024  CEA, EDF
 //
 // 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
 
 #ifndef RENUMBERING_HXX_
 #define RENUMBERING_HXX_
+
 #include "RENUMBERDefines.hxx"
+#include "MCType.hxx"
+
 #include <vector>
 
-namespace ParaMEDMEM
+namespace MEDCoupling
 {
-  class DataArrayInt;
+  class DataArrayIdType;
 }
 
 class RENUMBER_EXPORT Renumbering
 {
 public:
-  virtual void renumber(const int *graph, const int *index_graph, int nbCell, ParaMEDMEM::DataArrayInt *&iperm, ParaMEDMEM::DataArrayInt *&perm) = 0;
+  virtual void renumber(const mcIdType *graph, const mcIdType *index_graph, mcIdType nbCell, MEDCoupling::DataArrayIdType *&iperm, MEDCoupling::DataArrayIdType *&perm) = 0;
+  virtual ~Renumbering() { }
 }; 
 
 #endif /*RENUMBERING_HXX_*/