]> Shamusworld >> Repos - architektonas/blob - src/actions/actionblocksadd.h
In the middle of major refactoring...
[architektonas] / src / actions / actionblocksadd.h
1 #ifndef __ACTIONBLOCKSADD_H__
2 #define __ACTIONBLOCKSADD_H__
3
4 #include "actioninterface.h"
5
6 /**
7  * This action class can handle user events to edit blocks.
8  *
9  * @author James Hammons
10  * @author Andrew Mustun
11  */
12 class ActionBlocksAdd: public ActionInterface
13 {
14         public:
15                 ActionBlocksAdd(RS_EntityContainer & container, GraphicView & graphicView);
16                 ~ActionBlocksAdd();
17
18                 virtual void init(int status = 0);
19                 virtual void trigger();
20 };
21
22 #endif  // __ACTIONBLOCKSADD_H__