Salome HOME
Issue #608: Usage of OCCT in interface -- Remove OCCT from *Export interfaces
[modules/shaper.git] / src / GeomAlgoAPI / GeomAlgoAPI_BREPExport.h
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
2
3 // File:    GEOMALGOAPI_BREPExport.h
4 // Created: May 14, 2015
5 // Author:  Sergey POKHODENKO
6
7 #ifndef GEOMALGOAPI_BREPEXPORT_H_
8 #define GEOMALGOAPI_BREPEXPORT_H_
9
10 #include <GeomAlgoAPI.h>
11
12 #include <string>
13
14 #include <TopoDS_Shape.hxx>
15
16 namespace BREPExport {
17
18 /// Implementation of the export BREP files algorithms
19 GEOMALGOAPI_EXPORT
20 bool Export(const std::string& theFileName,
21             const std::string& theFormatName,
22             const TopoDS_Shape& theShape,
23             std::string& theError);
24
25 } // namespace BREPExport
26
27 #endif /* GEOMALGOAPI_BREPEXPORT_H_ */