]> Shamusworld >> Repos - architektonas/blob - src/actions/rs_actionselectinvert.h
bcf7f828d832f5fdda47fc82a29c540af6d40c19
[architektonas] / src / actions / rs_actionselectinvert.h
1 #ifndef RS_ACTIONSELECTINVERT_H
2 #define RS_ACTIONSELECTINVERT_H
3
4 #include "rs_actioninterface.h"
5
6 /**
7  * This action class can handle user events to select all entities.
8  *
9  * @author Andrew Mustun
10  */
11 class RS_ActionSelectInvert: public RS_ActionInterface
12 {
13         public:
14                 RS_ActionSelectInvert(RS_EntityContainer & container, GraphicView & graphicView);
15                 ~RS_ActionSelectInvert();
16
17                 virtual RS2::ActionType rtti();
18                 void init(int status);
19                 virtual void trigger();
20 };
21
22 #endif