1 #ifndef __ACTIONSELECT_H__
2 #define __ACTIONSELECT_H__
4 #include "actioninterface.h"
7 * This action class can handle user events to select entities.
9 * @author James Hammons
10 * @author Andrew Mustun
12 class ActionSelect: public ActionInterface
15 ActionSelect(EntityContainer & container, GraphicView & graphicView, RS2::ActionType nextAction);
18 void init(int status);
19 void mouseReleaseEvent(QMouseEvent * e);
23 RS2::ActionType nextAction;
26 #endif // __ACTIONSELECT_H__