]> Shamusworld >> Repos - architektonas/blobdiff - src/actions/actioninfodist.h
In the middle of major refactoring...
[architektonas] / src / actions / actioninfodist.h
similarity index 71%
rename from src/actions/rs_actioninfodist.h
rename to src/actions/actioninfodist.h
index 9209de474df2bc62e4da80bd5bd433e245888eac..1d3d01ec433584465d51f8376e960b324e81a3dd 100644 (file)
@@ -1,16 +1,17 @@
-#ifndef RS_ACTIONINFODIST_H
-#define RS_ACTIONINFODIST_H
+#ifndef __ACTIONINFODIST_H__
+#define __ACTIONINFODIST_H__
 
-#include "rs_previewactioninterface.h"
+#include "actioninterface.h"
 #include "vector.h"
 
 /**
  * This action class can handle user events to measure distances between
  * two points.
  *
+ * @author James Hammons
  * @author Andrew Mustun
  */
-class RS_ActionInfoDist: public RS_PreviewActionInterface
+class ActionInfoDist: public ActionInterface
 {
        public:
                /**
@@ -22,8 +23,8 @@ class RS_ActionInfoDist: public RS_PreviewActionInterface
                };
 
        public:
-               RS_ActionInfoDist(RS_EntityContainer & container, GraphicView & graphicView);
-               ~RS_ActionInfoDist();
+               ActionInfoDist(RS_EntityContainer & container, GraphicView & graphicView);
+               ~ActionInfoDist();
 
                virtual void init(int status = 0);
                virtual void trigger();
@@ -39,4 +40,4 @@ class RS_ActionInfoDist: public RS_PreviewActionInterface
                Vector point2;
 };
 
-#endif
+#endif // __ACTIONINFODIST_H__