]> Shamusworld >> Repos - architektonas/blobdiff - src/actions/actioninfoangle.h
In the middle of major refactoring...
[architektonas] / src / actions / actioninfoangle.h
similarity index 70%
rename from src/actions/rs_actioninfoangle.h
rename to src/actions/actioninfoangle.h
index 50bff9409095d30bc24fbc3605ede87759d83880..8c878c7bdefe2c035c9a652be88d19661cc3c240 100644 (file)
@@ -1,7 +1,7 @@
-#ifndef RS_ACTIONINFOANGLE_H
-#define RS_ACTIONINFOANGLE_H
+#ifndef __ACTIONINFOANGLE_H__
+#define __ACTIONINFOANGLE_H__
 
-#include "rs_previewactioninterface.h"
+#include "actioninterface.h"
 #include "vector.h"
 
 class RS_Entity;
@@ -9,9 +9,10 @@ class RS_Entity;
 /**
  * This action class can handle user events to measure angles.
  *
+ * @author James Hammons
  * @author Andrew Mustun
  */
-class RS_ActionInfoAngle: public RS_PreviewActionInterface
+class ActionInfoAngle: public ActionInterface
 {
        public:
                /**
@@ -23,8 +24,8 @@ class RS_ActionInfoAngle: public RS_PreviewActionInterface
                };
 
        public:
-               RS_ActionInfoAngle(RS_EntityContainer & container, GraphicView & graphicView);
-               ~RS_ActionInfoAngle();
+               ActionInfoAngle(RS_EntityContainer & container, GraphicView & graphicView);
+               ~ActionInfoAngle();
 
                virtual void init(int status = 0);
                virtual void trigger();
@@ -44,4 +45,4 @@ class RS_ActionInfoAngle: public RS_PreviewActionInterface
                Vector intersection;
 };
 
-#endif
+#endif // __ACTIONINFOANGLE_H__