Salome HOME
Issue #2602: Check selection with validators before its using.
[modules/shaper.git] / src / ModuleBase / ModuleBase_Operation.h
index 7e88b08e0e83390c8cea0477eeb71c7236c0c840..4ea8c6c4493267c41597323cf0d420e1b80768ba 100644 (file)
@@ -100,6 +100,12 @@ Q_OBJECT
   /// \return Currently installed property panel
   ModuleBase_IPropertyPanel* propertyPanel() const { return myPropertyPanel; }
 
+  QString helpFileName() const { return myHelpFileName; }
+
+  void setHelpFileName(QString theName) {
+    myHelpFileName = theName;
+  }
+
 signals:
   /// The operation is started
   void beforeStarted();
@@ -202,6 +208,8 @@ private:
 
   /// Access to property panel
   ModuleBase_IPropertyPanel* myPropertyPanel;
+
+  QString myHelpFileName;
 };
 
 #endif