X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Factions%2Factioninfoangle.h;fp=src%2Factions%2Frs_actioninfoangle.h;h=8c878c7bdefe2c035c9a652be88d19661cc3c240;hb=d774c2655ba2c3657a565f325411144452392277;hp=50bff9409095d30bc24fbc3605ede87759d83880;hpb=468780dd17f8b0ebb35427a9fc43491721d44d69;p=architektonas diff --git a/src/actions/rs_actioninfoangle.h b/src/actions/actioninfoangle.h similarity index 70% rename from src/actions/rs_actioninfoangle.h rename to src/actions/actioninfoangle.h index 50bff94..8c878c7 100644 --- a/src/actions/rs_actioninfoangle.h +++ b/src/actions/actioninfoangle.h @@ -1,7 +1,7 @@ -#ifndef RS_ACTIONINFOANGLE_H -#define RS_ACTIONINFOANGLE_H +#ifndef __ACTIONINFOANGLE_H__ +#define __ACTIONINFOANGLE_H__ -#include "rs_previewactioninterface.h" +#include "actioninterface.h" #include "vector.h" class RS_Entity; @@ -9,9 +9,10 @@ class RS_Entity; /** * This action class can handle user events to measure angles. * + * @author James Hammons * @author Andrew Mustun */ -class RS_ActionInfoAngle: public RS_PreviewActionInterface +class ActionInfoAngle: public ActionInterface { public: /** @@ -23,8 +24,8 @@ class RS_ActionInfoAngle: public RS_PreviewActionInterface }; public: - RS_ActionInfoAngle(RS_EntityContainer & container, GraphicView & graphicView); - ~RS_ActionInfoAngle(); + ActionInfoAngle(RS_EntityContainer & container, GraphicView & graphicView); + ~ActionInfoAngle(); virtual void init(int status = 0); virtual void trigger(); @@ -44,4 +45,4 @@ class RS_ActionInfoAngle: public RS_PreviewActionInterface Vector intersection; }; -#endif +#endif // __ACTIONINFOANGLE_H__