1 #ifndef __ACTIONSELECTALL_H__
2 #define __ACTIONSELECTALL_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 ActionSelectAll: public ActionInterface
15 ActionSelectAll(EntityContainer & container, GraphicView & graphicView, bool select);
18 virtual RS2::ActionType rtti();
19 void init(int status);
20 virtual void trigger();
26 #endif // __ACTIONSELECTALL_H__