X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Factions%2Factiondimension.h;fp=src%2Factions%2Frs_actiondimension.h;h=e8f3b9d1faa71a8412b99f44e3ccb95b7a4053b8;hb=d774c2655ba2c3657a565f325411144452392277;hp=910bfc0a7a491ae5602b5aed26e5167ed54ddf9d;hpb=468780dd17f8b0ebb35427a9fc43491721d44d69;p=architektonas diff --git a/src/actions/rs_actiondimension.h b/src/actions/actiondimension.h similarity index 72% rename from src/actions/rs_actiondimension.h rename to src/actions/actiondimension.h index 910bfc0..e8f3b9d 100644 --- a/src/actions/rs_actiondimension.h +++ b/src/actions/actiondimension.h @@ -1,20 +1,21 @@ -#ifndef RS_ACTIONDIMENSION_H -#define RS_ACTIONDIMENSION_H +#ifndef __ACTIONDIMENSION_H__ +#define __ACTIONDIMENSION_H__ #include #include "rs_dimension.h" -#include "rs_previewactioninterface.h" +#include "actioninterface.h" /** * Base class for dimension actions. * + * @author James Hammons * @author Andrew Mustun */ -class RS_ActionDimension: public RS_PreviewActionInterface +class ActionDimension: public ActionInterface { public: - RS_ActionDimension(const char * name, RS_EntityContainer & container, GraphicView & graphicView); - ~RS_ActionDimension(); + ActionDimension(const char * name, RS_EntityContainer & container, GraphicView & graphicView); + ~ActionDimension(); virtual void reset(); virtual void init(int status = 0); @@ -46,4 +47,4 @@ class RS_ActionDimension: public RS_PreviewActionInterface bool diameter; }; -#endif +#endif // __ACTIONDIMENSION_H__