X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Factions%2Factionselectsingle.h;fp=src%2Factions%2Frs_actionselectsingle.h;h=20d0c95d20da6f2d4abd3a76d1d4f3e9f4fa01d1;hb=d774c2655ba2c3657a565f325411144452392277;hp=bb003b6dcecc0eaa29fbb594ed66ca7df49e3b86;hpb=468780dd17f8b0ebb35427a9fc43491721d44d69;p=architektonas diff --git a/src/actions/rs_actionselectsingle.h b/src/actions/actionselectsingle.h similarity index 53% rename from src/actions/rs_actionselectsingle.h rename to src/actions/actionselectsingle.h index bb003b6..20d0c95 100644 --- a/src/actions/rs_actionselectsingle.h +++ b/src/actions/actionselectsingle.h @@ -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__