]> Shamusworld >> Repos - architektonas/blobdiff - src/actions/actionselectsingle.h
In the middle of major refactoring...
[architektonas] / src / actions / actionselectsingle.h
similarity index 53%
rename from src/actions/rs_actionselectsingle.h
rename to src/actions/actionselectsingle.h
index bb003b6dcecc0eaa29fbb594ed66ca7df49e3b86..20d0c95d20da6f2d4abd3a76d1d4f3e9f4fa01d1 100644 (file)
@@ -1,20 +1,21 @@
-#ifndef RS_ACTIONSELECTSINGLE_H
-#define RS_ACTIONSELECTSINGLE_H
+#ifndef __ACTIONSELECTSINGLE_H__
+#define __ACTIONSELECTSINGLE_H__
 
-#include "rs_actioninterface.h"
+#include "actioninterface.h"
 
 class RS_Entity;
 
 /**
  * This action class can handle user events to select entities.
  *
+ * @author James Hammons
  * @author Andrew Mustun
  */
-class RS_ActionSelectSingle: public RS_ActionInterface
+class ActionSelectSingle: public ActionInterface
 {
        public:
-               RS_ActionSelectSingle(RS_EntityContainer & container, GraphicView & graphicView);
-               ~RS_ActionSelectSingle();
+               ActionSelectSingle(RS_EntityContainer & container, GraphicView & graphicView);
+               ~ActionSelectSingle();
 
                virtual RS2::ActionType rtti();
                virtual void trigger();
@@ -26,4 +27,4 @@ class RS_ActionSelectSingle: public RS_ActionInterface
                RS_Entity * en;
 };
 
-#endif
+#endif // __ACTIONSELECTSINGLE_H__