Salome HOME
MAJ vers paraview 5.4
[modules/paravis.git] / src / Plugins / ParaMEDCorba / vtkParaMEDCorbaSource.h
index b9ddf7e74ba7f5d972bb15f1692061e127cde283..6c2747b112d5f57b65082eb7ec41e0ff38fd05d1 100644 (file)
@@ -1,9 +1,9 @@
-// Copyright (C) 2010-2013  CEA/DEN, EDF R&D
+// Copyright (C) 2010-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
@@ -23,7 +23,7 @@
 
 #include "ParaMEDMEM2VTK_defines.hxx"
 #include "vtkUnstructuredGridAlgorithm.h"
-#include <vtksys/stl/vector>
+#include <vector>
 
 class vtkDoubleArray;
 class vtkUnstructuredGrid;
@@ -60,15 +60,15 @@ protected:
   int EndPiece;
   int BufferingPolicy;
   vtkUnstructuredGrid *MyDataSet;
-  vtksys_stl::vector<char> IOR;
+  std::vector<char> IOR;
   ParaMEDMEM2VTK::MEDCouplingMultiFieldsFetcher *mfieldsFetcher;
   //not clean but to avoid to include CORBA.h in this *.h
   static void *Orb;
   //ETX
- private:
+private:
   /*void traduceMedMeshToUnstructuredDataset(vtkUnstructuredGrid *ret, int nbOfCells, int nbOfNodes, 
-                                          int nbOfTypes, const int *types, const int *nbOfEltsPerTypes, const int *nodalConnectivity,
-                                          const double *coords, int spaceDim);
+            int nbOfTypes, const int *types, const int *nbOfEltsPerTypes, const int *nodalConnectivity,
+            const double *coords, int spaceDim);
   vtkDoubleArray *buildDataArrayFromMedCoords(const double *coords, int nbOfNodes, int spaceDim);
   void reorganizeCellConnectivity(int vtkType, int nbOfNodes, const int *medConn, int *vtkConn);
   int transformMedGeomEltType2VtkType(int typeMed, int *nbOfNodesPerCell);*/