]> Shamusworld >> Repos - architektonas/blob - src/actions/actionselectall.h
Removed unnecessary RS_ prefix from classes and whatnot.
[architektonas] / src / actions / actionselectall.h
1 #ifndef __ACTIONSELECTALL_H__
2 #define __ACTIONSELECTALL_H__
3
4 #include "actioninterface.h"
5
6 /**
7  * This action class can handle user events to select all entities.
8  *
9  * @author James Hammons
10  * @author Andrew Mustun
11  */
12 class ActionSelectAll: public ActionInterface
13 {
14         public:
15                 ActionSelectAll(EntityContainer & container, GraphicView & graphicView, bool select);
16                 ~ActionSelectAll();
17
18                 virtual RS2::ActionType rtti();
19                 void init(int status);
20                 virtual void trigger();
21
22         protected:
23                 bool select;
24 };
25
26 #endif  // __ACTIONSELECTALL_H__