]> SALOME platform Git repositories - modules/shaper.git/blob - src/ExchangePlugin/ExchangePlugin_Plugin.h
Salome HOME
5cb5f20f0ac5793fea1fb08f9703f4f2f70d4fe9
[modules/shaper.git] / src / ExchangePlugin / ExchangePlugin_Plugin.h
1 // File:        ExchangePlugin_Plugin.hxx
2 // Created:     07 July 2014
3 // Author:      Vitaly SMETANNIKOV
4
5 #ifndef EXCHANGEPLUGIN_PLUGIN_H_
6 #define EXCHANGEPLUGIN_PLUGIN_H_
7
8 #include <ExchangePlugin.h>
9 #include <ModelAPI_Plugin.h>
10 #include <ModelAPI_Feature.h>
11
12 class EXCHANGEPLUGIN_EXPORT ExchangePlugin_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   ExchangePlugin_Plugin();
21 };
22
23 #endif