]> Shamusworld >> Repos - architektonas/blobdiff - src/actions/actionzoompan.h
In the middle of major refactoring...
[architektonas] / src / actions / actionzoompan.h
similarity index 59%
rename from src/actions/rs_actionzoompan.h
rename to src/actions/actionzoompan.h
index a2cc8394e1407081b709082e43582b1d696f43f0..526ab56ee6d30e6dcf921c9479cee78adbc7c08f 100644 (file)
@@ -1,18 +1,19 @@
-#ifndef RS_ACTIONZOOMPAN_H
-#define RS_ACTIONZOOMPAN_H
+#ifndef __ACTIONZOOMPAN_H__
+#define __ACTIONZOOMPAN_H__
 
-#include "rs_actioninterface.h"
+#include "actioninterface.h"
 
 /**
  * This action class can handle user events to zoom in a window.
  *
+ * @author James Hammons
  * @author Andrew Mustun
  */
-class RS_ActionZoomPan: public RS_ActionInterface
+class ActionZoomPan: public ActionInterface
 {
        public:
-               RS_ActionZoomPan(RS_EntityContainer & container, GraphicView & graphicView);
-               ~RS_ActionZoomPan();
+               ActionZoomPan(RS_EntityContainer & container, GraphicView & graphicView);
+               ~ActionZoomPan();
 
                virtual void init(int status = 0);
                virtual void trigger();
@@ -28,4 +29,4 @@ class RS_ActionZoomPan: public RS_ActionInterface
                int y2;
 };
 
-#endif
+#endif // __ACTIONZOOMPAN_H__