1 #ifndef __ACTIONSELECTBASE_H__
2 #define __ACTIONSELECTBASE_H__
4 #include "actioninterface.h"
7 * This class is the base class to all select actions.
9 * @author James Hammons
10 * @author Andrew Mustun
12 class ActionSelectBase: public ActionInterface
15 ActionSelectBase(const char * name, EntityContainer & container, GraphicView & graphicView);
18 virtual void keyReleaseEvent(QKeyEvent * e);
19 virtual void updateMouseCursor();
22 #endif // __ACTIONSELECTBASE_H__