]> Shamusworld >> Repos - architektonas/blobdiff - src/actions/actionlibraryinsert.h
In the middle of major refactoring...
[architektonas] / src / actions / actionlibraryinsert.h
similarity index 82%
rename from src/actions/rs_actionlibraryinsert.h
rename to src/actions/actionlibraryinsert.h
index 51e3e442d87ffe386d64a51870ea94f4d67d671b..f69576d79e50f7c4c1ee877483d852c31eb618ee 100644 (file)
@@ -1,17 +1,18 @@
-#ifndef RS_ACTIONLIBRARYINSERT_H
-#define RS_ACTIONLIBRARYINSERT_H
+#ifndef __ACTIONLIBRARYINSERT_H__
+#define __ACTIONLIBRARYINSERT_H__
 
 #include "rs_creation.h"
 #include "drawing.h"
-#include "rs_previewactioninterface.h"
+#include "actioninterface.h"
 
 /**
  * This action class can handle user events for inserting library items
  * (or any other DXF files) into the current drawing (as block/insert).
  *
+ * @author James Hammons
  * @author Andrew Mustun
  */
-class RS_ActionLibraryInsert: public RS_PreviewActionInterface
+class ActionLibraryInsert: public ActionInterface
 {
        public:
                /**
@@ -28,8 +29,8 @@ class RS_ActionLibraryInsert: public RS_PreviewActionInterface
                };
 
        public:
-               RS_ActionLibraryInsert(RS_EntityContainer & container, GraphicView & graphicView);
-               virtual ~RS_ActionLibraryInsert();
+               ActionLibraryInsert(RS_EntityContainer & container, GraphicView & graphicView);
+               virtual ~ActionLibraryInsert();
 
                virtual RS2::ActionType rtti();
                virtual void init(int status = 0);
@@ -59,4 +60,4 @@ class RS_ActionLibraryInsert: public RS_PreviewActionInterface
                Status lastStatus;
 };
 
-#endif
+#endif // __ACTIONLIBRARYINSERT_H__