X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FGeomAlgoAPI%2FGeomAlgoAPI_BREPExport.cpp;h=a9c4fffd2ca63d6727c7213e83297202760e6ff4;hb=3d28bcbab2f3ed0e40295e64f4e836caebc19fca;hp=d85ae6b4f74de282aad96e9a93839936f1872a80;hpb=0479361746467f244b7ccfd1d25443677bdea8a6;p=modules%2Fshaper.git diff --git a/src/GeomAlgoAPI/GeomAlgoAPI_BREPExport.cpp b/src/GeomAlgoAPI/GeomAlgoAPI_BREPExport.cpp index d85ae6b4f..a9c4fffd2 100644 --- a/src/GeomAlgoAPI/GeomAlgoAPI_BREPExport.cpp +++ b/src/GeomAlgoAPI/GeomAlgoAPI_BREPExport.cpp @@ -8,6 +8,8 @@ #include "GeomAlgoAPI_Tools.h" +#include + #include #include @@ -18,17 +20,22 @@ //============================================================================= bool BREPExport(const std::string& theFileName, const std::string&, - const TopoDS_Shape& theShape, + const std::shared_ptr& theShape, std::string& theError) { #ifdef _DEBUG std::cout << "Export BREP into file " << theFileName << std::endl; #endif + 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, theFileName.c_str())) { + if (!BRepTools::Write(theShape->impl(), theFileName.c_str())) { theError = "BREP Export failed"; return false; }