X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FGeomAlgoAPI%2FGeomAlgoAPI_BREPImport.cpp;h=c71bafa40f2953a294e86584e7d7f18599dca67e;hb=f60dc9dd94d5d4b0ea07e3e3cbfd5b3028f0942d;hp=2df29ebc080dedf4445d8563d8b6b54616c14d78;hpb=534832230a29726c5bf6f438f7630f9058d38ba9;p=modules%2Fshaper.git diff --git a/src/GeomAlgoAPI/GeomAlgoAPI_BREPImport.cpp b/src/GeomAlgoAPI/GeomAlgoAPI_BREPImport.cpp index 2df29ebc0..c71bafa40 100644 --- a/src/GeomAlgoAPI/GeomAlgoAPI_BREPImport.cpp +++ b/src/GeomAlgoAPI/GeomAlgoAPI_BREPImport.cpp @@ -1,7 +1,27 @@ -// Copyright (C) 2014-20xx CEA/DEN, EDF R&D +// Copyright (C) 2014-2017 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 + #include #include @@ -10,23 +30,21 @@ * */ //============================================================================= -//extern "C" { -namespace BREPImport { -TopoDS_Shape Import(const TCollection_AsciiString& theFileName, - const TCollection_AsciiString&, - TCollection_AsciiString& theError, const TDF_Label&) +std::shared_ptr BREPImport(const std::string& theFileName, + const std::string&, + std::string& theError) { #ifdef _DEBUG std::cout << "Import BREP from file " << theFileName << std::endl; #endif TopoDS_Shape aShape; BRep_Builder aBuilder; - BRepTools::Read(aShape, theFileName.ToCString(), aBuilder); + BRepTools::Read(aShape, theFileName.c_str(), aBuilder); if (aShape.IsNull()) { theError = "BREP Import failed"; } - return aShape; -} + std::shared_ptr aGeomShape(new GeomAPI_Shape); + aGeomShape->setImpl(new TopoDS_Shape(aShape)); + return aGeomShape; } -//}