]> SALOME platform Git repositories - modules/shaper.git/blob - src/SketchPlugin/SketchPlugin_Plugin.h
Salome HOME
dab7e9b1c19f5bf718604066f9c55e3691404c0b
[modules/shaper.git] / src / SketchPlugin / SketchPlugin_Plugin.h
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D -->
2
3 // File:        SketchPlugin_Plugin.hxx
4 // Created:     31 Mar 2014
5 // Author:      Mikhail PONIKAROV
6
7 #ifndef SketchPlugin_Plugin_H_
8 #define SketchPlugin_Plugin_H_
9
10 #include "SketchPlugin.h"
11 #include "ModelAPI_Plugin.h"
12 #include "ModelAPI_Feature.h"
13
14 class SKETCHPLUGIN_EXPORT SketchPlugin_Plugin : public ModelAPI_Plugin
15 {
16  public:
17   /// Creates the feature object of this plugin by the feature string ID
18   virtual FeaturePtr createFeature(std::string theFeatureID);
19
20  public:
21   /// Is needed for python wrapping by swig
22   SketchPlugin_Plugin();
23 };
24
25 #endif