X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Factions%2Factiondrawline.h;fp=src%2Factions%2Frs_actiondrawline.h;h=fde8b4f448cf1a0854ef36d3acf2b29235bc2acd;hb=d774c2655ba2c3657a565f325411144452392277;hp=b059d6e583a87c33bcd804236bedb5155dbf454b;hpb=468780dd17f8b0ebb35427a9fc43491721d44d69;p=architektonas diff --git a/src/actions/rs_actiondrawline.h b/src/actions/actiondrawline.h similarity index 80% rename from src/actions/rs_actiondrawline.h rename to src/actions/actiondrawline.h index b059d6e..fde8b4f 100644 --- a/src/actions/rs_actiondrawline.h +++ b/src/actions/actiondrawline.h @@ -1,17 +1,18 @@ -#ifndef RS_ACTIONDRAWLINE_H -#define RS_ACTIONDRAWLINE_H +#ifndef __ACTIONDRAWLINE_H__ +#define __ACTIONDRAWLINE_H__ #include -#include "rs_previewactioninterface.h" +#include "actioninterface.h" #include "rs_line.h" /** * This action class can handle user events to draw * simple lines with the start- and endpoint given. * + * @author James Hammons * @author Andrew Mustun */ -class RS_ActionDrawLine: public RS_PreviewActionInterface +class ActionDrawLine: public ActionInterface { public: /** @@ -24,8 +25,8 @@ class RS_ActionDrawLine: public RS_PreviewActionInterface }; public: - RS_ActionDrawLine(RS_EntityContainer & container, GraphicView & graphicView); - virtual ~RS_ActionDrawLine(); + ActionDrawLine(RS_EntityContainer & container, GraphicView & graphicView); + virtual ~ActionDrawLine(); virtual RS2::ActionType rtti(); void reset(); @@ -62,4 +63,4 @@ class RS_ActionDrawLine: public RS_PreviewActionInterface QList history; }; -#endif +#endif // __ACTIONDRAWLINE_H__