source: molecuilder/src/Actions/MakroAction.hpp@ 7a9881

Last change on this file since 7a9881 was 3e8325, checked in by Tillmann Crueger <crueger@…>, 16 years ago

Added a central registry that allows access to actions by name.

  • Property mode set to 100644
File size: 663 bytes
Line 
1/*
2 * MakroAction.hpp
3 *
4 * Created on: Dec 17, 2009
5 * Author: crueger
6 */
7
8#ifndef MAKROACTION_HPP_
9#define MAKROACTION_HPP_
10
11#include <string>
12
13#include "Actions/Action.hpp"
14
15class ActionSequence;
16
17/**
18 * Action to allow producing bigger Actions from sequences of small actions.
19 *
20 * Destruction of the Actions and the sequence is handled by this class.
21 */
22class MakroAction : public Action
23{
24public:
25 MakroAction(std::string _name,ActionSequence* _actions,bool _doRegister=true);
26 virtual ~MakroAction();
27
28 virtual void call();
29 virtual void undo();
30 virtual bool canUndo();
31
32private:
33 ActionSequence *actions;
34};
35
36#endif /* MAKROACTION_HPP_ */
Note: See TracBrowser for help on using the repository browser.