Salome HOME
Move GeomValidator_* registration from PartSet_Module to GeomValidator_Plugin
[modules/shaper.git] / src / GeomValidators / GeomValidators_Plugin.h
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D -->
2
3 // File:        GeomValidators_Plugin.h
4 // Created:     28 Oct 2015
5 // Author:      Sergey POKHODENKO
6
7 #ifndef GEOMVALIDATORS_PLUGIN_H_
8 #define GEOMVALIDATORS_PLUGIN_H_
9
10 #include <GeomValidators.h>
11 #include <ModelAPI_Plugin.h>
12 #include <ModelAPI_Feature.h>
13
14 /**\class GeomValidators_Plugin
15  * \ingroup Plugins
16  * \brief Interface common for any plugin: allows to use plugin by the plugins manager.
17  */
18 class GEOMVALIDATORS_EXPORT GeomValidators_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   GeomValidators_Plugin();
26 };
27
28 #endif