X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Factions%2Factiondrawhatch.h;fp=src%2Factions%2Frs_actiondrawhatch.h;h=20c2a0a4cf79861a54a29240e9c665cd371f4a6a;hb=d774c2655ba2c3657a565f325411144452392277;hp=295456464dfedd426201a96a44f55a5d0df933a8;hpb=468780dd17f8b0ebb35427a9fc43491721d44d69;p=architektonas diff --git a/src/actions/rs_actiondrawhatch.h b/src/actions/actiondrawhatch.h similarity index 66% rename from src/actions/rs_actiondrawhatch.h rename to src/actions/actiondrawhatch.h index 2954564..20c2a0a 100644 --- a/src/actions/rs_actiondrawhatch.h +++ b/src/actions/actiondrawhatch.h @@ -1,15 +1,16 @@ -#ifndef RS_ACTIONDRAWHATCH_H -#define RS_ACTIONDRAWHATCH_H +#ifndef __ACTIONDRAWHATCH_H__ +#define __ACTIONDRAWHATCH_H__ #include "rs_hatch.h" -#include "rs_previewactioninterface.h" +#include "actioninterface.h" /** * This action class can handle user events to draw hatches. * + * @author James Hammons * @author Andrew Mustun */ -class RS_ActionDrawHatch: public RS_PreviewActionInterface +class ActionDrawHatch: public ActionInterface { public: /** @@ -20,8 +21,8 @@ class RS_ActionDrawHatch: public RS_PreviewActionInterface }; public: - RS_ActionDrawHatch(RS_EntityContainer & container, GraphicView & graphicView); - ~RS_ActionDrawHatch(); + ActionDrawHatch(RS_EntityContainer & container, GraphicView & graphicView); + ~ActionDrawHatch(); virtual void init(int status = 0); virtual void trigger(); @@ -36,4 +37,4 @@ class RS_ActionDrawHatch: public RS_PreviewActionInterface RS_Hatch * hatch; }; -#endif +#endif // __ACTIONDRAWHATCH_H__