Salome HOME
[CEA 13302] Policy for c++ files ? using namespaces in c++ header files. boost_ptr...
[plugins/hexablockplugin.git] / src / HEXABLOCKPlugin / HEXABLOCKPlugin_mesh.cxx
index de97e9be673a735eda0318734b85fa59dec1c82d..67726ed2e63e8e6539b691b1c9426e9cab6d4dae 100644 (file)
@@ -99,10 +99,10 @@ static double HEXA_EPS      = 1.0e-3; //1E-3;
 static double HEXA_QUAD_WAY = M_PI/4.; //3.*PI/8.;
 
 // ============================================================ string2shape
-TopoDS_Shape string2shape( const string& brep )
+TopoDS_Shape string2shape( const std::string& brep )
 {
   TopoDS_Shape shape;
-  istringstream streamBrep(brep);
+  std::istringstream streamBrep(brep);
   BRep_Builder aBuilder;
   BRepTools::Read(shape, streamBrep, aBuilder);
   return shape;