Salome HOME
Issue #1740 The visualization of selected point in the graphic scene is not visible
[modules/shaper.git] / src / ParametersPlugin / ParametersPlugin_Parameter.h
index 229f8f217192cb95b68fcc2ee18a9f377b490708..5f2689c5fb55c868e38883bdc1dcba3c01e184b6 100644 (file)
@@ -12,8 +12,6 @@
 
 #include <memory>
 
-class ParametersPlugin_PyInterp;
-
 /**
  * \class ParametersPlugin_Parameter
  * \ingroup Plugins
@@ -55,6 +53,13 @@ class ParametersPlugin_Parameter : public ModelAPI_Feature
     return MY_ARGUMENTS_ID;
   }
 
+  /// return comment attribute Id
+  inline static const std::string& COMMENT_ID()
+  {
+    static const std::string MY_COMMENT_ID("comment");
+    return MY_COMMENT_ID;
+  }
+
   /// Returns the kind of a feature
   PARAMETERSPLUGIN_EXPORT virtual const std::string& getKind()
   {
@@ -86,10 +91,7 @@ class ParametersPlugin_Parameter : public ModelAPI_Feature
   /// Updates name of the parameter
   void updateName();
   /// Updates expression of the parameter
-  void updateExpression();
-
- private:
-  std::shared_ptr<ParametersPlugin_PyInterp> myInterp;
+  bool updateExpression();
 };
 
 #endif