Salome HOME
Task #30 - Sketch base GUI: create, draw lines
[modules/shaper.git] / src / SketchPlugin / SketchPlugin_Plugin.h
1 // File:        SketchPlugin_Plugin.hxx
2 // Created:     31 Mar 2014
3 // Author:      Mikhail PONIKAROV
4
5 #ifndef SketchPlugin_Plugin_HeaderFile
6 #define SketchPlugin_Plugin_HeaderFile
7
8
9 #include "SketchPlugin.h"
10 #include "ModelAPI_Plugin.h"
11
12 class SKETCHPLUGIN_EXPORT SketchPlugin_Plugin: public ModelAPI_Plugin
13 {
14 public:
15   /// Creates the feature object of this plugin by the feature string ID
16   virtual std::shared_ptr<ModelAPI_Feature> createFeature(std::string theFeatureID);
17
18 public:
19   /// Is needed for python wrapping by swig
20   SketchPlugin_Plugin();
21 };
22
23 #endif