X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Factions%2Factiondrawlineparallelthrough.h;fp=src%2Factions%2Frs_actiondrawlineparallelthrough.h;h=ddf54923573dc4b1def4322622c71f43a655c79f;hb=d774c2655ba2c3657a565f325411144452392277;hp=8a6acd3a07611867e32d058199e0777614899b15;hpb=468780dd17f8b0ebb35427a9fc43491721d44d69;p=architektonas diff --git a/src/actions/rs_actiondrawlineparallelthrough.h b/src/actions/actiondrawlineparallelthrough.h similarity index 71% rename from src/actions/rs_actiondrawlineparallelthrough.h rename to src/actions/actiondrawlineparallelthrough.h index 8a6acd3..ddf5492 100644 --- a/src/actions/rs_actiondrawlineparallelthrough.h +++ b/src/actions/actiondrawlineparallelthrough.h @@ -1,19 +1,20 @@ -#ifndef RS_ACTIONDRAWLINEPARALLELTHROUGH_H -#define RS_ACTIONDRAWLINEPARALLELTHROUGH_H +#ifndef __ACTIONDRAWLINEPARALLELTHROUGH_H__ +#define __ACTIONDRAWLINEPARALLELTHROUGH_H__ #include "rs_line.h" -#include "rs_previewactioninterface.h" +#include "actioninterface.h" #include "vector.h" class RS_Entity; /** - * This action class can handle user events to draw parallel - * lines, arcs and circles. + * This action class can handle user events to draw parallel lines, arcs and + * circles. * + * @author James Hammons * @author Andrew Mustun */ -class RS_ActionDrawLineParallelThrough: public RS_PreviewActionInterface +class ActionDrawLineParallelThrough: public ActionInterface { private: enum Status { @@ -23,8 +24,8 @@ class RS_ActionDrawLineParallelThrough: public RS_PreviewActionInterface }; public: - RS_ActionDrawLineParallelThrough(RS_EntityContainer & container, GraphicView & graphicView); - ~RS_ActionDrawLineParallelThrough(); + ActionDrawLineParallelThrough(RS_EntityContainer & container, GraphicView & graphicView); + ~ActionDrawLineParallelThrough(); virtual RS2::ActionType rtti(); virtual void trigger(); @@ -56,4 +57,4 @@ class RS_ActionDrawLineParallelThrough: public RS_PreviewActionInterface Status lastStatus; }; -#endif +#endif // __ACTIONDRAWLINEPARALLELTHROUGH_H__