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