Salome HOME
3. Mixed topology: solids, faces, edges and vertices
[modules/shaper.git] / src / GeomAlgoAPI / GeomAlgoAPI_BREPExport.cpp
index 506a082645e816ee5831cc0a3c86eff803dc4501..a9c4fffd2ca63d6727c7213e83297202760e6ff4 100644 (file)
@@ -1,7 +1,15 @@
 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
 
+// File:    GEOMALGOAPI_BREPExport.cpp
+// Created: May 14, 2015
+// Author:  Sergey POKHODENKO
+
 #include <GeomAlgoAPI_BREPExport.h>
 
+#include "GeomAlgoAPI_Tools.h"
+
+#include <TopoDS_Shape.hxx>
+
 #include <BRepTools.hxx>
 #include <BRep_Builder.hxx>
 
  *
  */
 //=============================================================================
-//extern "C" {
-namespace BREPExport {
-bool Export(const TCollection_AsciiString& theFileName,
-            const TCollection_AsciiString&,
-            const TopoDS_Shape& theShape,
-            TCollection_AsciiString& theError)
+bool BREPExport(const std::string& theFileName,
+                const std::string&,
+                const std::shared_ptr<GeomAPI_Shape>& theShape,
+                std::string& theError)
 {
   #ifdef _DEBUG
   std::cout << "Export BREP into file " << theFileName << std::endl;
   #endif
-  if ( !BRepTools::Write( theShape, theFileName.ToCString() ) ) {
+
+  if (!theShape.get()) {
+    theError = "BREP Export failed: An invalid argument";
+    return false;
+  }
+
+  // Set "C" numeric locale to save numbers correctly
+  GeomAlgoAPI_Tools::Localizer loc;
+
+  if (!BRepTools::Write(theShape->impl<TopoDS_Shape>(), theFileName.c_str())) {
     theError = "BREP Export failed";
     return false;
   }
   return true;
 }
-
-}
-//}