Salome HOME
GDD: Check that the PipeTShape is a block if it is required by user
[modules/geom.git] / src / BREPImport / BREPImport.cxx
1 //  Copyright (C) 2007-2010  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.
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 WNT
38  #if defined BREPIMPORT_EXPORTS || defined BREPImport_EXPORTS
39   #if defined WIN32
40    #define BREPIMPORT_EXPORT __declspec( dllexport )
41   #else
42    #define BREPIMPORT_EXPORT
43   #endif
44  #else
45   #if defined WIN32
46    #define BREPIMPORT_EXPORT __declspec( dllimport )
47   #else
48    #define BREPIMPORT_EXPORT
49   #endif
50  #endif
51 #else
52  #define BREPIMPORT_EXPORT
53 #endif
54
55 //=============================================================================
56 /*!
57  *
58  */
59 //=============================================================================
60
61 extern "C"
62 {
63 BREPIMPORT_EXPORT
64   TopoDS_Shape Import (const TCollection_AsciiString& theFileName,
65                        const TCollection_AsciiString& /*theFormatName*/,
66                        TCollection_AsciiString&       theError,
67                        const TDF_Label&)
68   {
69     MESSAGE("Import BREP from file " << theFileName);
70     TopoDS_Shape aShape;
71     BRep_Builder B;
72     BRepTools::Read(aShape, theFileName.ToCString(), B);
73     if (aShape.IsNull()) {
74       theError = "BREP Import failed";
75     }
76     return aShape;
77   }
78 }