X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Factions%2Factiondrawarc.h;fp=src%2Factions%2Frs_actiondrawarc.h;h=a834a3a267f62b44ac2cac0b0a28901cfac6e0df;hb=d774c2655ba2c3657a565f325411144452392277;hp=90fec85d52f96351a74c0c5da956f3618d802b44;hpb=468780dd17f8b0ebb35427a9fc43491721d44d69;p=architektonas diff --git a/src/actions/rs_actiondrawarc.h b/src/actions/actiondrawarc.h similarity index 73% rename from src/actions/rs_actiondrawarc.h rename to src/actions/actiondrawarc.h index 90fec85..a834a3a 100644 --- a/src/actions/rs_actiondrawarc.h +++ b/src/actions/actiondrawarc.h @@ -1,16 +1,17 @@ -#ifndef RS_ACTIONDRAWARC_H -#define RS_ACTIONDRAWARC_H +#ifndef __ACTIONDRAWARC_H__ +#define __ACTIONDRAWARC_H__ -#include "rs_previewactioninterface.h" +#include "actioninterface.h" #include "rs_arc.h" /** - * This action class can handle user events to draw - * simple arcs with the center, radius, start- and endangle given. + * This action class can handle user events to draw simple arcs with the + * center, radius, start- and endangle given. * + * @author James Hammons * @author Andrew Mustun */ -class RS_ActionDrawArc: public RS_PreviewActionInterface +class ActionDrawArc: public ActionInterface { public: /** @@ -26,8 +27,8 @@ class RS_ActionDrawArc: public RS_PreviewActionInterface }; public: - RS_ActionDrawArc(RS_EntityContainer & container, GraphicView & graphicView); - ~RS_ActionDrawArc(); + ActionDrawArc(RS_EntityContainer & container, GraphicView & graphicView); + ~ActionDrawArc(); virtual RS2::ActionType rtti(); void reset(); @@ -53,4 +54,4 @@ class RS_ActionDrawArc: public RS_PreviewActionInterface RS_ArcData data; }; -#endif +#endif // __ACTIONDRAWARC_H__