]> Shamusworld >> Repos - architektonas/blobdiff - src/actions/actionmodifyrotate.h
In the middle of major refactoring...
[architektonas] / src / actions / actionmodifyrotate.h
similarity index 70%
rename from src/actions/rs_actionmodifyrotate.h
rename to src/actions/actionmodifyrotate.h
index 1569dc2eb06dec4d8c2fddc925840a4e1f878a66..be88a0e9b6d0760115962f8f7aa8e3f1c8a70fd0 100644 (file)
@@ -1,16 +1,17 @@
-#ifndef RS_ACTIONMODIFYROTATE_H
-#define RS_ACTIONMODIFYROTATE_H
+#ifndef __ACTIONMODIFYROTATE_H__
+#define __ACTIONMODIFYROTATE_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_ActionModifyRotate: public RS_PreviewActionInterface
+class ActionModifyRotate: public ActionInterface
 {
        public:
                /**
@@ -22,8 +23,8 @@ class RS_ActionModifyRotate: public RS_PreviewActionInterface
                };
 
        public:
-               RS_ActionModifyRotate(RS_EntityContainer & container, GraphicView & graphicView);
-               ~RS_ActionModifyRotate();
+               ActionModifyRotate(RS_EntityContainer & container, GraphicView & graphicView);
+               ~ActionModifyRotate();
 
                virtual void init(int status = 0);
                virtual void trigger();
@@ -40,4 +41,4 @@ class RS_ActionModifyRotate: public RS_PreviewActionInterface
                Vector targetPoint;
 };
 
-#endif
+#endif // __ACTIONMODIFYROTATE_H__