]> Shamusworld >> Repos - architektonas/blob - src/actions/actionselectbase.h
Removed unnecessary RS_ prefix from classes and whatnot.
[architektonas] / src / actions / actionselectbase.h
1 #ifndef __ACTIONSELECTBASE_H__
2 #define __ACTIONSELECTBASE_H__
3
4 #include "actioninterface.h"
5
6 /**
7  * This class is the base class to all select actions.
8  *
9  * @author James Hammons
10  * @author Andrew Mustun
11  */
12 class ActionSelectBase: public ActionInterface
13 {
14         public:
15                 ActionSelectBase(const char * name, EntityContainer & container, GraphicView & graphicView);
16                 ~ActionSelectBase();
17
18                 virtual void keyReleaseEvent(QKeyEvent * e);
19                 virtual void updateMouseCursor();
20 };
21
22 #endif  // __ACTIONSELECTBASE_H__