Salome HOME
refs #430: incorrect coordinates in dump polyline
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_ZLevelsOp.h
index c83edef659cc49b86bcd997c67e2bc3edcff57b4..7d43033bad2b0a3236848299403f2cd314ba2cf6 100644 (file)
 
 class HYDROGUI_ZLevelsDlg;
 
+
 class HYDROGUI_ZLevelsOp : public HYDROGUI_Operation
 {
   Q_OBJECT
 
 public:
-
   HYDROGUI_ZLevelsOp( HYDROGUI_Module* theModule );
   virtual ~HYDROGUI_ZLevelsOp();
 
 public:
-
-  virtual bool               isGranted() const { return true; }
+  virtual bool isGranted() const;
 
 protected:
-
   virtual void startOperation();
-
-  virtual bool processApply( int& theUpdateFlags, QString& theErrorMsg );
+  virtual bool processApply( int& theUpdateFlags, QString& theErrorMsg,
+                             QStringList& theBrowseObjectsEntries );
+  virtual void processCancel();
 
 private:
-  HYDROGUI_ZLevelsDlg*     myZLevelsDlg;
+  HYDROGUI_ZLevelsDlg* myDlg;
 
 };