Salome HOME
Issue #1424: Make impossible to create non-valid parameters more the a one
[modules/shaper.git] / src / ModuleBase / ModuleBase_IErrorMgr.h
index d6423725324803ded94e5da83202ec28518b7e3b..9f595fdbbf7bb5e5fa97c9467694d7d1cd882f1c 100644 (file)
 
 class ModuleBase_IPropertyPanel;
 
+/**
+ * \class ModuleBase_IErrorMgr
+ * \ingroup GUI
+ * \brief An interface to Errors manager object
+ */
 class MODULEBASE_EXPORT ModuleBase_IErrorMgr : public QObject
 {
   Q_OBJECT
 public:
   /// Default constructor
+  /// \param theParent a parent object
   ModuleBase_IErrorMgr(QObject* theParent = 0);
   /// Virtual destructor
   virtual ~ModuleBase_IErrorMgr();
@@ -28,10 +34,6 @@ public:
   /// \return Currently installed property panel
   ModuleBase_IPropertyPanel* propertyPanel() const { return myPropertyPanel; }
 
-public slots:
-  /// SLOT, that is called after the operation is validated and feature validation errors have changed.
-  //virtual void onValidationStateChanged() = 0;
-
 protected slots:
   /// Process values changed event for processing feature attribute validation errors.
   virtual void onWidgetChanged() = 0;