Salome HOME
Update of transactions management after the nested operation finished in extrusion cut
[modules/shaper.git] / src / ExchangePlugin / ExchangePlugin_Plugin.h
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
2
3 // File:    ExchangePlugin_Plugin.h
4 // Created: Aug 28, 2014
5 // Author:  Sergey BELASH
6
7 #ifndef EXCHANGEPLUGIN_PLUGIN_H_
8 #define EXCHANGEPLUGIN_PLUGIN_H_
9
10 #include <ExchangePlugin.h>
11 #include <ModelAPI_Plugin.h>
12 #include <ModelAPI_Feature.h>
13
14 /**\class ExchangePlugin_Plugin
15  * \ingroup Plugins
16  * \brief The main class for management the import and export operations as plugin.
17  */
18 class EXCHANGEPLUGIN_EXPORT ExchangePlugin_Plugin : public ModelAPI_Plugin
19 {
20  public:
21   /// Creates the feature object of this plugin by the feature string ID
22   virtual FeaturePtr createFeature(std::string theFeatureID);
23
24  public:
25   ExchangePlugin_Plugin();
26 };
27
28 #endif