1 #ifndef __ACTIONSELECTINVERT_H__
2 #define __ACTIONSELECTINVERT_H__
4 #include "actioninterface.h"
7 * This action class can handle user events to select all entities.
9 * @author James Hammons
10 * @author Andrew Mustun
12 class ActionSelectInvert: public ActionInterface
15 ActionSelectInvert(EntityContainer & container, GraphicView & graphicView);
16 ~ActionSelectInvert();
18 virtual RS2::ActionType rtti();
19 void init(int status);
20 virtual void trigger();
23 #endif // __ACTIONSELECTINVERT_H__