]> Shamusworld >> Repos - architektonas/blob - src/actions/actionselectinvert.h
In the middle of major refactoring...
[architektonas] / src / actions / actionselectinvert.h
1 #ifndef __ACTIONSELECTINVERT_H__
2 #define __ACTIONSELECTINVERT_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 ActionSelectInvert: public ActionInterface
13 {
14         public:
15                 ActionSelectInvert(RS_EntityContainer & container, GraphicView & graphicView);
16                 ~ActionSelectInvert();
17
18                 virtual RS2::ActionType rtti();
19                 void init(int status);
20                 virtual void trigger();
21 };
22
23 #endif  // __ACTIONSELECTINVERT_H__