Changes in src/Actions/MakroAction.hpp [af5384:329cf3]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Actions/MakroAction.hpp
raf5384 r329cf3 18 18 19 19 #include "Actions/Action.hpp" 20 #include "Actions/ActionSequence.hpp" 21 22 class ActionSequenceTest; 20 23 21 24 namespace MoleCuilder { 22 25 class ActionRegistry; 23 class ActionSequence;24 26 25 27 /** … … 30 32 class MakroAction : public Action 31 33 { 34 //!> grant unit test access to sequence 35 friend class ::ActionSequenceTest; 32 36 public: 37 MakroAction(const MakroAction &_instance); 33 38 MakroAction(const ActionTrait &_trait,ActionSequence& _actions); 34 39 virtual ~MakroAction(); … … 78 83 Dialog *fillDialog(Dialog *dialog); 79 84 85 //!> this points to the instance of a specific MakroAction, we need to ref for callAll() 80 86 ActionSequence &actions; 81 87 };
Note:
See TracChangeset
for help on using the changeset viewer.