Salome HOME
Fix compilation errors on Linux
[modules/shaper.git] / src / GeomAlgoAPI / GeomAlgoAPI_XAOExport.h
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
2
3 // File:    GEOMALGOAPI_XAOExport.h
4 // Created: Nov 27, 2015
5 // Author:  Sergey POKHODENKO
6
7 #ifndef GEOMALGOAPI_XAOEXPORT_H_
8 #define GEOMALGOAPI_XAOEXPORT_H_
9
10 #include <GeomAlgoAPI.h>
11
12 #include <string>
13
14 #include <GeomAPI_Shape.h>
15
16 namespace XAO {
17 class Xao;
18 } // namespace XAO
19
20 /// Defines shape for the XAO object
21 GEOMALGOAPI_EXPORT
22 bool SetShapeToXAO(const std::shared_ptr<GeomAPI_Shape>& theShape,
23                    XAO::Xao* theXao,
24                    std::string& theError);
25
26 /// Implementation of the export XAO files algorithms
27 GEOMALGOAPI_EXPORT
28 bool XAOExport(const std::string& theFileName,
29                XAO::Xao* theXao,
30                std::string& theError);
31
32 #endif /* GEOMALGOAPI_XAOEXPORT_H_ */