#include "GEOM_Client.hxx"
#include "OCC2VTK_Tools.h"
+#include <algorithm>
//----------------------------------------------
vtkStandardNewMacro(vtkParaGEOMCorbaSource);
return;
int length=strlen(ior);
IOR.resize(length+1);
- vtksys_stl::copy(ior,ior+length+1,&IOR[0]);
+ std::copy(ior,ior+length+1,&IOR[0]);
this->Modified();
}
#define __vtkParaGEOMCorbaSource_h
#include "vtkUnstructuredGridAlgorithm.h"
-#include <vtksys/stl/vector>
+#include <vector>
class vtkParaGEOMCorbaSource : public vtkAlgorithm {
public:
int ProcessRequest(vtkInformation* request, vtkInformationVector** inputVector, vtkInformationVector* outputVector);
virtual int RequestData( vtkInformation* request, vtkInformationVector** inInfo, vtkInformationVector* outInfo );
- vtksys_stl::vector<char> IOR;
+ std::vector<char> IOR;
static void *Orb;
double Deflection;
#include "SMDS_UnstructuredGrid.hxx"
#include "SMESH_Mesh.hh"
+#include <algorithm>
+
vtkStandardNewMacro(vtkParaSMESHCorbaSource);
void *vtkParaSMESHCorbaSource::Orb=0;
return;
int length=strlen(ior);
IOR.resize(length+1);
- vtksys_stl::copy(ior,ior+length+1,&IOR[0]);
+ std::copy(ior,ior+length+1,&IOR[0]);
this->Modified();
}
#define __vtkParaSMESHCorbaSource_h
#include "vtkUnstructuredGridAlgorithm.h"
-#include <vtksys/stl/vector>
+#include <vector>
class vtkParaSMESHCorbaSource: public vtkAlgorithm {
public:
int FillOutputPortInformation(int vtkNotUsed(port), vtkInformation* info);
int ProcessRequest(vtkInformation* request, vtkInformationVector** inputVector, vtkInformationVector* outputVector);
virtual int RequestData( vtkInformation* request, vtkInformationVector** inInfo, vtkInformationVector* outInfo );
- vtksys_stl::vector<char> IOR;
+ std::vector<char> IOR;
static void *Orb;
private:
vtkParaSMESHCorbaSource( const vtkParaSMESHCorbaSource& ); // Not implemented.