X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FGeomAlgoAPI%2FGeomAlgoAPI_BREPExport.cpp;h=a593d85043538057441f4db09e11b19dfe904a2e;hb=fdd802da7683f66ca609cf12b1e11be9642149d6;hp=0499c7587bd094fb3e32f9085234f412f5f0a2c3;hpb=a2c43dba0a6cb0632f9c795ee2055e7ea562b996;p=modules%2Fshaper.git diff --git a/src/GeomAlgoAPI/GeomAlgoAPI_BREPExport.cpp b/src/GeomAlgoAPI/GeomAlgoAPI_BREPExport.cpp index 0499c7587..a593d8504 100644 --- a/src/GeomAlgoAPI/GeomAlgoAPI_BREPExport.cpp +++ b/src/GeomAlgoAPI/GeomAlgoAPI_BREPExport.cpp @@ -1,7 +1,28 @@ -// Copyright (C) 2014-20xx CEA/DEN, EDF R&D +// Copyright (C) 2014-2020 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, 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 +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +// Lesser General Public License for more details. +// +// You should have received a copy of the GNU Lesser General Public +// License along with this library; if not, write to the Free Software +// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +// +// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com +// #include +#include "GeomAlgoAPI_Tools.h" + +#include + #include #include @@ -10,22 +31,26 @@ * */ //============================================================================= -//extern "C" { -namespace BREPExport { -bool Export(const TCollection_AsciiString& theFileName, - const TCollection_AsciiString&, - const TopoDS_Shape& theShape, - TCollection_AsciiString& theError, const TDF_Label&) +bool BREPExport(const std::string& theFileName, + const std::string&, + const std::shared_ptr& 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(), theFileName.c_str())) { theError = "BREP Export failed"; return false; } return true; } - -} -//}