]> Shamusworld >> Repos - architektonas/blobdiff - src/actions/actionblocksinsert.h
In the middle of major refactoring...
[architektonas] / src / actions / actionblocksinsert.h
similarity index 84%
rename from src/actions/rs_actionblocksinsert.h
rename to src/actions/actionblocksinsert.h
index 7e3fb94967d0511762ae07de89e76baff3c45b93..1bdf49d0cf99ba93403fea707d3c40ec7ed9c3ed 100644 (file)
@@ -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__