Changeset abd4a1 for molecuilder/src/Actions/ActionSequence.hpp
- Timestamp:
- Apr 8, 2010, 2:00:11 PM (15 years ago)
- Children:
- 91b18cd
- Parents:
- 770138
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
molecuilder/src/Actions/ActionSequence.hpp
r770138 rabd4a1 18 18 class ActionSequence 19 19 { 20 friend class MakroAction; 20 21 public: 21 22 typedef std::deque<Action*> actionSet; … … 28 29 Action* removeLastAction(); 29 30 30 stateSet callAll(); 31 stateSet undoAll(stateSet); 32 stateSet redoAll(stateSet); 31 void callAll(); 33 32 34 33 bool canUndo(); 35 34 bool shouldUndo(); 36 35 36 protected: 37 stateSet callAll(bool); // Dummy parameter to allow overloading 38 stateSet undoAll(stateSet); 39 stateSet redoAll(stateSet); 37 40 private: 38 41 actionSet actions;
Note:
See TracChangeset
for help on using the changeset viewer.