Salome HOME
Fix for the issue #1794: can't create a plane by a vertex and an axis if the vertex...
[modules/shaper.git] / src / ConstructionPlugin / ConstructionPlugin_Plugin.h
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
2
3 // File:        ConstructionPlugin_Plugin.hxx
4 // Created:     31 Mar 2014
5 // Author:      Mikhail PONIKAROV
6
7 #ifndef ConstructionPlugin_Plugin_H_
8 #define ConstructionPlugin_Plugin_H_
9
10 #include "ConstructionPlugin.h"
11 #include "ModelAPI_Plugin.h"
12 #include "ModelAPI_Feature.h"
13
14 /**\class ConstructionPlugin_Plugin
15  * \ingroup Plugins
16  * \brief The main class for management the construction features as plugin.
17  */
18 class CONSTRUCTIONPLUGIN_EXPORT ConstructionPlugin_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   /// Default constructor
25   ConstructionPlugin_Plugin();
26 };
27
28 #endif