X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Factions%2Factionsnapintersectionmanual.h;fp=src%2Factions%2Frs_actionsnapintersectionmanual.h;h=b119c50614604e67085590938cbdc4cef475a3e1;hb=d774c2655ba2c3657a565f325411144452392277;hp=10e6b3f1973e2e2a70d6c37fa17666421f0b8946;hpb=468780dd17f8b0ebb35427a9fc43491721d44d69;p=architektonas diff --git a/src/actions/rs_actionsnapintersectionmanual.h b/src/actions/actionsnapintersectionmanual.h similarity index 64% rename from src/actions/rs_actionsnapintersectionmanual.h rename to src/actions/actionsnapintersectionmanual.h index 10e6b3f..b119c50 100644 --- a/src/actions/rs_actionsnapintersectionmanual.h +++ b/src/actions/actionsnapintersectionmanual.h @@ -1,7 +1,7 @@ -#ifndef RS_ACTIONSNAPINTERSECTIONMANUAL_H -#define RS_ACTIONSNAPINTERSECTIONMANUAL_H +#ifndef __ACTIONSNAPINTERSECTIONMANUAL_H__ +#define __ACTIONSNAPINTERSECTIONMANUAL_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 trim entities. * + * @author James Hammons * @author Andrew Mustun */ -class RS_ActionSnapIntersectionManual: public RS_PreviewActionInterface +class ActionSnapIntersectionManual: public ActionInterface { public: /** @@ -23,8 +24,8 @@ class RS_ActionSnapIntersectionManual: public RS_PreviewActionInterface }; public: - RS_ActionSnapIntersectionManual(RS_EntityContainer & container, GraphicView & graphicView); - ~RS_ActionSnapIntersectionManual(); + ActionSnapIntersectionManual(RS_EntityContainer & container, GraphicView & graphicView); + ~ActionSnapIntersectionManual(); virtual void init(int status = 0); virtual void trigger(); @@ -40,4 +41,4 @@ class RS_ActionSnapIntersectionManual: public RS_PreviewActionInterface Vector coord; }; -#endif +#endif // __ACTIONSNAPINTERSECTIONMANUAL_H__