X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Factions%2Factionblocksinsert.h;fp=src%2Factions%2Frs_actionblocksinsert.h;h=1bdf49d0cf99ba93403fea707d3c40ec7ed9c3ed;hb=d774c2655ba2c3657a565f325411144452392277;hp=7e3fb94967d0511762ae07de89e76baff3c45b93;hpb=468780dd17f8b0ebb35427a9fc43491721d44d69;p=architektonas diff --git a/src/actions/rs_actionblocksinsert.h b/src/actions/actionblocksinsert.h similarity index 84% rename from src/actions/rs_actionblocksinsert.h rename to src/actions/actionblocksinsert.h index 7e3fb94..1bdf49d 100644 --- a/src/actions/rs_actionblocksinsert.h +++ b/src/actions/actionblocksinsert.h @@ -1,16 +1,17 @@ -#ifndef RS_ACTIONBLOCKSINSERT_H -#define RS_ACTIONBLOCKSINSERT_H +#ifndef __ACTIONBLOCKSINSERT_H__ +#define __ACTIONBLOCKSINSERT_H__ -#include "rs_previewactioninterface.h" +#include "actioninterface.h" #include "rs_insert.h" /** * This action class can handle user events for inserting blocks into the * current drawing. * + * @author James Hammons * @author Andrew Mustun */ -class RS_ActionBlocksInsert: public RS_PreviewActionInterface +class ActionBlocksInsert: public ActionInterface { public: /** @@ -27,8 +28,8 @@ class RS_ActionBlocksInsert: public RS_PreviewActionInterface }; public: - RS_ActionBlocksInsert(RS_EntityContainer & container, GraphicView & graphicView); - ~RS_ActionBlocksInsert(); + ActionBlocksInsert(RS_EntityContainer & container, GraphicView & graphicView); + ~ActionBlocksInsert(); virtual RS2::ActionType rtti(); virtual void init(int status = 0); @@ -66,4 +67,4 @@ class RS_ActionBlocksInsert: public RS_PreviewActionInterface Status lastStatus; }; -#endif +#endif // __ACTIONBLOCKSINSERT_H__