]> Shamusworld >> Repos - architektonas/blobdiff - src/actions/actionmodifyscale.h
In the middle of major refactoring...
[architektonas] / src / actions / actionmodifyscale.h
similarity index 69%
rename from src/actions/rs_actionmodifyscale.h
rename to src/actions/actionmodifyscale.h
index 099672ec9df3284bc3bc9f92f6e14559d6956782..3a070cbe94df19418146df4300876ff16311360c 100644 (file)
@@ -1,16 +1,17 @@
-#ifndef RS_ACTIONMODIFYSCALE_H
-#define RS_ACTIONMODIFYSCALE_H
+#ifndef __ACTIONMODIFYSCALE_H__
+#define __ACTIONMODIFYSCALE_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_ActionModifyScale: public RS_PreviewActionInterface
+class ActionModifyScale: public ActionInterface
 {
        public:
                /**
@@ -22,8 +23,8 @@ class RS_ActionModifyScale: public RS_PreviewActionInterface
                };
 
        public:
-               RS_ActionModifyScale(RS_EntityContainer & container, GraphicView & graphicView);
-               ~RS_ActionModifyScale();
+               ActionModifyScale(RS_EntityContainer & container, GraphicView & graphicView);
+               ~ActionModifyScale();
 
                virtual void init(int status = 0);
                virtual void trigger();
@@ -39,4 +40,4 @@ class RS_ActionModifyScale: public RS_PreviewActionInterface
                Vector targetPoint;
 };
 
-#endif
+#endif // __ACTIONMODIFYSCALE_H__