X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Factions%2Factiondrawarctangential.h;fp=src%2Factions%2Frs_actiondrawarctangential.h;h=d1f3ac23c26d0d8f52395bb4a9a3106408f1aae0;hb=d774c2655ba2c3657a565f325411144452392277;hp=1d56f14495409fbd826dde6f2ff232f54bc1c6f2;hpb=468780dd17f8b0ebb35427a9fc43491721d44d69;p=architektonas diff --git a/src/actions/rs_actiondrawarctangential.h b/src/actions/actiondrawarctangential.h similarity index 78% rename from src/actions/rs_actiondrawarctangential.h rename to src/actions/actiondrawarctangential.h index 1d56f14..d1f3ac2 100644 --- a/src/actions/rs_actiondrawarctangential.h +++ b/src/actions/actiondrawarctangential.h @@ -1,7 +1,7 @@ -#ifndef RS_ACTIONDRAWARCTANGENTIAL_H -#define RS_ACTIONDRAWARCTANGENTIAL_H +#ifndef __ACTIONDRAWARCTANGENTIAL_H__ +#define __ACTIONDRAWARCTANGENTIAL_H__ -#include "rs_previewactioninterface.h" +#include "actioninterface.h" #include "rs_arc.h" #include "vector.h" @@ -11,9 +11,10 @@ class RS_AtomicEntity; * This action class can handle user events to draw * arcs with three points given. * + * @author James Hammons * @author Andrew Mustun */ -class RS_ActionDrawArcTangential: public RS_PreviewActionInterface +class ActionDrawArcTangential: public ActionInterface { public: /** @@ -25,8 +26,8 @@ class RS_ActionDrawArcTangential: public RS_PreviewActionInterface }; public: - RS_ActionDrawArcTangential(RS_EntityContainer & container, GraphicView & graphicView); - ~RS_ActionDrawArcTangential(); + ActionDrawArcTangential(RS_EntityContainer & container, GraphicView & graphicView); + ~ActionDrawArcTangential(); virtual RS2::ActionType rtti(); void reset(); @@ -65,4 +66,4 @@ class RS_ActionDrawArcTangential: public RS_PreviewActionInterface RS_ArcData data; }; -#endif +#endif // __ACTIONDRAWARCTANGENTIAL_H__