X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Factions%2Factionmodifyrotate.h;fp=src%2Factions%2Frs_actionmodifyrotate.h;h=be88a0e9b6d0760115962f8f7aa8e3f1c8a70fd0;hb=d774c2655ba2c3657a565f325411144452392277;hp=1569dc2eb06dec4d8c2fddc925840a4e1f878a66;hpb=468780dd17f8b0ebb35427a9fc43491721d44d69;p=architektonas diff --git a/src/actions/rs_actionmodifyrotate.h b/src/actions/actionmodifyrotate.h similarity index 70% rename from src/actions/rs_actionmodifyrotate.h rename to src/actions/actionmodifyrotate.h index 1569dc2..be88a0e 100644 --- a/src/actions/rs_actionmodifyrotate.h +++ b/src/actions/actionmodifyrotate.h @@ -1,16 +1,17 @@ -#ifndef RS_ACTIONMODIFYROTATE_H -#define RS_ACTIONMODIFYROTATE_H +#ifndef __ACTIONMODIFYROTATE_H__ +#define __ACTIONMODIFYROTATE_H__ #include "rs_modification.h" -#include "rs_previewactioninterface.h" +#include "actioninterface.h" #include "vector.h" /** * This action class can handle user events to move entities. * + * @author James Hammons * @author Andrew Mustun */ -class RS_ActionModifyRotate: public RS_PreviewActionInterface +class ActionModifyRotate: public ActionInterface { public: /** @@ -22,8 +23,8 @@ class RS_ActionModifyRotate: public RS_PreviewActionInterface }; public: - RS_ActionModifyRotate(RS_EntityContainer & container, GraphicView & graphicView); - ~RS_ActionModifyRotate(); + ActionModifyRotate(RS_EntityContainer & container, GraphicView & graphicView); + ~ActionModifyRotate(); virtual void init(int status = 0); virtual void trigger(); @@ -40,4 +41,4 @@ class RS_ActionModifyRotate: public RS_PreviewActionInterface Vector targetPoint; }; -#endif +#endif // __ACTIONMODIFYROTATE_H__