]> Shamusworld >> Repos - architektonas/blobdiff - src/actions/actioneditpaste.h
In the middle of major refactoring...
[architektonas] / src / actions / actioneditpaste.h
similarity index 69%
rename from src/actions/rs_actioneditpaste.h
rename to src/actions/actioneditpaste.h
index d910bf4dbc5f1553a506862e955968a8769b55dc..dd7f3e9848ce93236c1ba7529cae6a7e5b93944a 100644 (file)
@@ -1,16 +1,17 @@
-#ifndef RS_ACTIONEDITPASTE_H
-#define RS_ACTIONEDITPASTE_H
+#ifndef __ACTIONEDITPASTE_H__
+#define __ACTIONEDITPASTE_H__
 
-#include "rs_previewactioninterface.h"
+#include "actioninterface.h"
 #include "vector.h"
 
 /**
  * This action class can handle user events for pasting entities from
  * the clipboard into the current document.
  *
+ * @author James Hammons
  * @author Andrew Mustun
  */
-class RS_ActionEditPaste: public RS_PreviewActionInterface
+class ActionEditPaste: public ActionInterface
 {
        public:
                /**
@@ -21,8 +22,8 @@ class RS_ActionEditPaste: public RS_PreviewActionInterface
                };
 
        public:
-               RS_ActionEditPaste(RS_EntityContainer & container, GraphicView & graphicView);
-               ~RS_ActionEditPaste();
+               ActionEditPaste(RS_EntityContainer & container, GraphicView & graphicView);
+               ~ActionEditPaste();
 
                virtual void init(int status = 0);
                virtual void trigger();
@@ -37,4 +38,4 @@ class RS_ActionEditPaste: public RS_PreviewActionInterface
                Vector targetPoint;
 };
 
-#endif
+#endif // __ACTIONEDITPASTE_H__