Salome HOME
Templates for implementation of Geom classes receiving
[modules/shaper.git] / src / GeomAPI / GeomAPI_Shape.h
1 // File:        GeomAPI_Shape.hxx
2 // Created:     23 Apr 2014
3 // Author:      Mikhail PONIKAROV
4
5 #ifndef GeomAPI_Shape_HeaderFile
6 #define GeomAPI_Shape_HeaderFile
7
8 #include <GeomAPI_Interface.h>
9
10 /**\class GeomAPI_Shape
11  * \ingroup DataModel
12  * \brief Interface to the topological shape object
13  */
14
15 class GEOMAPI_EXPORT GeomAPI_Shape: public GeomAPI_Interface
16 {
17 public:
18   /// Creation of empty (null) shape
19   GeomAPI_Shape();
20 };
21
22 #endif
23