X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Factions%2Factiondimdiametric.h;fp=src%2Factions%2Frs_actiondimdiametric.h;h=43859d17539bd866cf030d0e35d4f77e1ab8f81d;hb=d774c2655ba2c3657a565f325411144452392277;hp=e4b37c17d32c1c693aada48f1c8432d7ec413716;hpb=468780dd17f8b0ebb35427a9fc43491721d44d69;p=architektonas diff --git a/src/actions/rs_actiondimdiametric.h b/src/actions/actiondimdiametric.h similarity index 77% rename from src/actions/rs_actiondimdiametric.h rename to src/actions/actiondimdiametric.h index e4b37c1..43859d1 100644 --- a/src/actions/rs_actiondimdiametric.h +++ b/src/actions/actiondimdiametric.h @@ -1,7 +1,7 @@ -#ifndef RS_ACTIONDIMDIAMETRIC_H -#define RS_ACTIONDIMDIAMETRIC_H +#ifndef __ACTIONDIMDIAMETRIC_H__ +#define __ACTIONDIMDIAMETRIC_H__ -#include "rs_actiondimension.h" +#include "actiondimension.h" #include "rs_dimdiametric.h" #include "vector.h" @@ -10,9 +10,10 @@ class RS_Entity; /** * This action class can handle user events to draw diametric dimensions. * + * @author James Hammons * @author Andrew Mustun */ -class RS_ActionDimDiametric: public RS_ActionDimension +class ActionDimDiametric: public ActionDimension { private: enum Status { @@ -22,8 +23,8 @@ class RS_ActionDimDiametric: public RS_ActionDimension }; public: - RS_ActionDimDiametric(RS_EntityContainer & container, GraphicView & graphicView); - ~RS_ActionDimDiametric(); + ActionDimDiametric(RS_EntityContainer & container, GraphicView & graphicView); + ~ActionDimDiametric(); virtual RS2::ActionType rtti(); virtual void reset(); @@ -49,4 +50,4 @@ class RS_ActionDimDiametric: public RS_ActionDimension Status lastStatus; }; -#endif +#endif // __ACTIONDIMDIAMETRIC_H__