]> Shamusworld >> Repos - architektonas/blobdiff - src/actions/actionmodifymove.h
In the middle of major refactoring...
[architektonas] / src / actions / actionmodifymove.h
similarity index 72%
rename from src/actions/rs_actionmodifymove.h
rename to src/actions/actionmodifymove.h
index ebdda4c483afd36fa358ac27afd197625b65c2d9..7f93a39cc93941145181eced39cfd39ed6ed26d8 100644 (file)
@@ -1,16 +1,17 @@
-#ifndef RS_ACTIONMODIFYMOVE_H
-#define RS_ACTIONMODIFYMOVE_H
+#ifndef __ACTIONMODIFYMOVE_H__
+#define __ACTIONMODIFYMOVE_H__
 
 #include "rs_modification.h"
-#include "rs_previewactioninterface.h"
+#include "actioninterface.h"
 #include "vector.h"
 
 /**
  * This action class can handle user events to move entities.
  *
+ * @author James Hammons
  * @author Andrew Mustun
  */
-class RS_ActionModifyMove: public RS_PreviewActionInterface
+class ActionModifyMove: public ActionInterface
 {
        public:
                /**
@@ -23,8 +24,8 @@ class RS_ActionModifyMove: public RS_PreviewActionInterface
                };
 
        public:
-               RS_ActionModifyMove(RS_EntityContainer & container, GraphicView & graphicView);
-               ~RS_ActionModifyMove();
+               ActionModifyMove(RS_EntityContainer & container, GraphicView & graphicView);
+               ~ActionModifyMove();
 
                virtual void init(int status = 0);
                virtual void trigger();
@@ -41,4 +42,4 @@ class RS_ActionModifyMove: public RS_PreviewActionInterface
                Vector targetPoint;
 };
 
-#endif
+#endif // __ACTIONMODIFYMOVE_H__