Salome HOME
Attributes for AMR cartesian mesh developped. Ready to test.
[tools/medcoupling.git] / src / RENUMBER / RENUMBER_Renumbering.hxx
index 22496a770f8f68814d08b74ec2b7971c6836e6e3..2ee19767eb6055ea8f6d328844ac62f20470495d 100644 (file)
@@ -1,9 +1,9 @@
-// Copyright (C) 2007-2012  CEA/DEN, EDF R&D
+// Copyright (C) 2007-2014  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
 #include "RENUMBERDefines.hxx"
 #include <vector>
 
+namespace ParaMEDMEM
+{
+  class DataArrayInt;
+}
+
 class RENUMBER_EXPORT Renumbering
 {
 public:
-  virtual void renumber(const int* graphe,const int* index_graphe,int nb_cell,std::vector<int>& iperm,std::vector<int>& perm)=0;
+  virtual void renumber(const int *graph, const int *index_graph, int nbCell, ParaMEDMEM::DataArrayInt *&iperm, ParaMEDMEM::DataArrayInt *&perm) = 0;
+  virtual ~Renumbering() { }
 }; 
 
 #endif /*RENUMBERING_HXX_*/