Salome HOME
Issue #1660: Ability to change the deflection coefficient
[modules/shaper.git] / src / ParametersPlugin / ParametersPlugin_Plugin.h
index d82198f60ed0db673ba03da83f1d0f8cc9e7c157..8a14b613de79284b7145ebeeec9d403d99d7a11c 100644 (file)
@@ -4,20 +4,27 @@
 #define PARAMETERSPLUGIN_PLUGIN_H_
 
 #include <ParametersPlugin.h>
+#include <ParametersPlugin_EvalListener.h>
+
 #include <ModelAPI_Plugin.h>
 #include <ModelAPI_Feature.h>
 
-/**\class ParametersPlugin_Plugin
- * TODO: Add documentation
+/**
+ * \class ParametersPlugin_Plugin
+ * \ingroup Plugins
+ * \brief The main class for management of parameter evaluation operations as plugin.
  */
-class PARAMETERSPLUGIN_EXPORT ParametersPlugin_Plugin : public ModelAPI_Plugin
+class ParametersPlugin_Plugin : public ModelAPI_Plugin
 {
  public:
   /// Creates the feature object of this plugin by the feature string ID
-  virtual FeaturePtr createFeature(std::string theFeatureID);
+  PARAMETERSPLUGIN_EXPORT virtual FeaturePtr createFeature(std::string theFeatureID);
 
  public:
   ParametersPlugin_Plugin();
+
+ private:
+  std::shared_ptr<ParametersPlugin_EvalListener> myEvalListener;
 };
 
 #endif