Salome HOME
#2027 Sketcher Trim Feature: 1. preview/selected attributes in trim; 2. avoid includi...
[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 /**
15  * \class ExchangePlugin_Plugin
16  * \ingroup Plugins
17  * \brief The main class for management import and export operations as plugin.
18  */
19 class EXCHANGEPLUGIN_EXPORT ExchangePlugin_Plugin : public ModelAPI_Plugin
20 {
21  public:
22   /// Creates the feature object of this plugin by the feature string ID
23   virtual FeaturePtr createFeature(std::string theFeatureID);
24
25  public:
26   ExchangePlugin_Plugin();
27 };
28
29 #endif