Ignore:
Timestamp:
Apr 8, 2010, 2:00:11 PM (15 years ago)
Author:
Tillmann Crueger <crueger@…>
Children:
91b18cd
Parents:
770138
Message:

Added detailed documentation for the Action class

File:
1 edited

Legend:

Unmodified
Added
Removed
  • molecuilder/src/Actions/ActionSequence.hpp

    r770138 rabd4a1  
    1818class ActionSequence
    1919{
     20  friend class MakroAction;
    2021public:
    2122  typedef std::deque<Action*> actionSet;
     
    2829  Action* removeLastAction();
    2930
    30   stateSet callAll();
    31   stateSet undoAll(stateSet);
    32   stateSet redoAll(stateSet);
     31  void callAll();
    3332
    3433  bool canUndo();
    3534  bool shouldUndo();
    3635
     36protected:
     37  stateSet callAll(bool); // Dummy parameter to allow overloading
     38  stateSet undoAll(stateSet);
     39  stateSet redoAll(stateSet);
    3740private:
    3841  actionSet actions;
Note: See TracChangeset for help on using the changeset viewer.