Salome HOME
Merge branch 'master' of newgeom:newgeom.git
[modules/shaper.git] / src / FeaturesPlugin / FeaturesPlugin_Plugin.h
1 // File:        FeaturesPlugin_Plugin.hxx
2 // Created:     07 July 2014
3 // Author:      Vitaly SMETANNIKOV
4
5 #ifndef FeaturesPlugin_Plugin_HeaderFile
6 #define FeaturesPlugin_Plugin_HeaderFile
7
8
9 #include "FeaturesPlugin.h"
10 #include <ModelAPI_Plugin.h>
11 #include <ModelAPI_Feature.h>
12
13 class FEATURESPLUGIN_EXPORT FeaturesPlugin_Plugin: public ModelAPI_Plugin
14 {
15 public:
16   /// Creates the feature object of this plugin by the feature string ID
17   virtual FeaturePtr createFeature(std::string theFeatureID);
18
19 public:
20   /// Is needed for python wrapping by swig
21   FeaturesPlugin_Plugin();
22 };
23
24 #endif