Salome HOME
Put groups to the separated plugin: Collection
[modules/shaper.git] / src / CollectionPlugin / CollectionPlugin_Plugin.h
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D -->
2
3 // File:        CollectionPlugin_Plugin.hxx
4 // Created:     07 July 2014
5 // Author:      Vitaly SMETANNIKOV
6
7 #ifndef CollectionPlugin_Plugin_H_
8 #define CollectionPlugin_Plugin_H_
9
10 #include "CollectionPlugin.h"
11 #include <ModelAPI_Plugin.h>
12 #include <ModelAPI_Feature.h>
13
14 /**\class CollectionPlugin_Plugin
15  * \ingroup Plugins
16  * \brief The main class for management the 3D features as plugin.
17  */
18 class COLLECTIONPLUGIN_EXPORT CollectionPlugin_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   /// Default constructor
26   CollectionPlugin_Plugin();
27 };
28
29 #endif