Salome HOME
4d2545167d33f18061e610fb628e86a1b6ae6c3a
[modules/geom.git] / src / BREPImport / BREPImport.cxx
1 // Copyright (C) 2007-2014  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License, or (at your option) any later version.
10 //
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 // Lesser General Public License for more details.
15 //
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22
23 // File:        BREPImport.cxx
24 // Created:     Wed May 19 14:29:52 2004
25 // Author:      Pavel TELKOV
26 //              <ptv@mutex.nnov.opencascade.com>
27 //
28 #include "utilities.h"
29
30 #include <BRepTools.hxx>
31 #include <BRep_Builder.hxx>
32
33 #include <TCollection_AsciiString.hxx>
34 #include <TopoDS_Shape.hxx>
35 #include <TDF_Label.hxx>
36
37 #ifdef WIN32
38   #if defined BREPIMPORT_EXPORTS || defined BREPImport_EXPORTS
39     #define BREPIMPORT_EXPORT __declspec( dllexport )
40   #else
41     #define BREPIMPORT_EXPORT __declspec( dllimport )
42   #endif
43 #else
44   #define BREPIMPORT_EXPORT
45 #endif
46
47 //=============================================================================
48 /*!
49  *
50  */
51 //=============================================================================
52
53 extern "C"
54 {
55 BREPIMPORT_EXPORT
56   TopoDS_Shape Import (const TCollection_AsciiString& theFileName,
57                        const TCollection_AsciiString& /*theFormatName*/,
58                        TCollection_AsciiString&       theError,
59                        const TDF_Label&)
60   {
61     MESSAGE("Import BREP from file " << theFileName);
62     TopoDS_Shape aShape;
63     BRep_Builder B;
64     BRepTools::Read(aShape, theFileName.ToCString(), B);
65     if (aShape.IsNull()) {
66       theError = "BREP Import failed";
67     }
68     return aShape;
69   }
70 }