Salome HOME
143b786e55d931542e4350dd2b0ab72753680755
[modules/shaper.git] / src / ConstructionPlugin / ConstructionPlugin_Plugin.h
1 // File:        ConstructionPlugin_Plugin.hxx
2 // Created:     31 Mar 2014
3 // Author:      Mikhail PONIKAROV
4
5 #ifndef ConstructionPlugin_Plugin_H_
6 #define ConstructionPlugin_Plugin_H_
7
8 #include "ConstructionPlugin.h"
9 #include "ModelAPI_Plugin.h"
10 #include "ModelAPI_Feature.h"
11
12 class CONSTRUCTIONPLUGIN_EXPORT ConstructionPlugin_Plugin : public ModelAPI_Plugin
13 {
14  public:
15   /// Creates the feature object of this plugin by the feature string ID
16   virtual FeaturePtr createFeature(std::string theFeatureID);
17
18  public:
19   /// Is needed for python wrapping by swig
20   ConstructionPlugin_Plugin();
21 };
22
23 #endif