X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Factions%2Factiondrawcircle.h;fp=src%2Factions%2Frs_actiondrawcircle.h;h=763d184c0f8f13b65510f2eae63aab13235c252b;hb=d774c2655ba2c3657a565f325411144452392277;hp=c5ca1fdd1621c05a567e4c981ad52c1ef8d4a195;hpb=468780dd17f8b0ebb35427a9fc43491721d44d69;p=architektonas diff --git a/src/actions/rs_actiondrawcircle.h b/src/actions/actiondrawcircle.h similarity index 76% rename from src/actions/rs_actiondrawcircle.h rename to src/actions/actiondrawcircle.h index c5ca1fd..763d184 100644 --- a/src/actions/rs_actiondrawcircle.h +++ b/src/actions/actiondrawcircle.h @@ -1,16 +1,17 @@ -#ifndef RS_ACTIONDRAWCIRCLE_H -#define RS_ACTIONDRAWCIRCLE_H +#ifndef __ACTIONDRAWCIRCLE_H__ +#define __ACTIONDRAWCIRCLE_H__ #include "rs_circle.h" -#include "rs_previewactioninterface.h" +#include "actioninterface.h" /** * This action class can handle user events to draw * circles with a given center and a point on the circle line. * + * @author James Hammons * @author Andrew Mustun */ -class RS_ActionDrawCircle: public RS_PreviewActionInterface +class ActionDrawCircle: public ActionInterface { public: /** @@ -22,8 +23,8 @@ class RS_ActionDrawCircle: public RS_PreviewActionInterface }; public: - RS_ActionDrawCircle(RS_EntityContainer & container, GraphicView & graphicView); - ~RS_ActionDrawCircle(); + ActionDrawCircle(RS_EntityContainer & container, GraphicView & graphicView); + ~ActionDrawCircle(); virtual RS2::ActionType rtti(); void reset(); @@ -47,4 +48,4 @@ class RS_ActionDrawCircle: public RS_PreviewActionInterface RS_CircleData data; }; -#endif +#endif // __ACTIONDRAWCIRCLE_H__