X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModuleBase%2FModuleBase_IErrorMgr.h;h=9f595fdbbf7bb5e5fa97c9467694d7d1cd882f1c;hb=8cd56d486b6e96b8814002f9f0f4acadd6cea11b;hp=d6423725324803ded94e5da83202ec28518b7e3b;hpb=73b63afd03a150740406d8c5cebf45ac5125f2e3;p=modules%2Fshaper.git diff --git a/src/ModuleBase/ModuleBase_IErrorMgr.h b/src/ModuleBase/ModuleBase_IErrorMgr.h index d64237253..9f595fdbb 100644 --- a/src/ModuleBase/ModuleBase_IErrorMgr.h +++ b/src/ModuleBase/ModuleBase_IErrorMgr.h @@ -12,11 +12,17 @@ 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;