Changes in src/Actions/small_actions.hpp [0188ea:d56640]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Actions/small_actions.hpp
r0188ea rd56640 14 14 virtual ~ChangeMoleculeNameAction(); 15 15 16 void call();17 void undo();18 16 bool canUndo(); 19 17 bool shouldUndo(); … … 21 19 virtual const std::string getName(); 22 20 private: 21 virtual Action::state_ptr performCall(); 22 virtual Action::state_ptr performUndo(Action::state_ptr); 23 virtual Action::state_ptr performRedo(Action::state_ptr); 24 23 25 MoleculeListClass *molecules; 24 static c har NAME[];26 static const char NAME[]; 25 27 }; 26 28
Note:
See TracChangeset
for help on using the changeset viewer.