]> SALOME platform Git repositories - modules/hydro.git/commitdiff
Salome HOME
Minor changes.
authorouv <ouv@opencascade.com>
Tue, 6 Aug 2013 11:53:19 +0000 (11:53 +0000)
committerouv <ouv@opencascade.com>
Tue, 6 Aug 2013 11:53:19 +0000 (11:53 +0000)
src/HYDROGUI/HYDROGUI_DataModel.h

index 07cca59b62d8b979e1bf02767cedd4d1b1f11915..9b08ac8d6deb7469ec39ce8ca3b4d0fb6b5d5c72 100644 (file)
@@ -146,20 +146,41 @@ public:
    * Check if it is possible to perform 'undo' operation
    */
   bool canUndo() const;
+
+  /**
+   * Check if it is possible to perform 'redo' operation
+   */
   bool canRedo() const;
 
   /**
    * Returns the list of names of available 'undo' actions
    */
   QStringList undoNames() const;
+
+  /**
+   * Returns the list of names of available 'redo' actions
+   */
   QStringList redoNames() const;
 
+  /**
+   * Clear the list of stored 'undo' actions
+   */
   void clearUndos();
+
+  /**
+   * Clear the list of stored 'redo' actions
+   */
   void clearRedos();
 
+  /**
+   * Perform the 'undo' operation
+   */
   bool undo();
-  bool redo();
 
+  /**
+   * Perform the 'redo' operation
+   */
+  bool redo();
 
 protected:
   /**