]> Shamusworld >> Repos - architektonas/blobdiff - src/actions/actiondrawlinetangent2.h
In the middle of major refactoring...
[architektonas] / src / actions / actiondrawlinetangent2.h
similarity index 71%
rename from src/actions/rs_actiondrawlinetangent2.h
rename to src/actions/actiondrawlinetangent2.h
index 374e3041572edc52b2334d2af064b4e14fce12ae..62e315d1a1733c6cbc17d879626c719522577528 100644 (file)
@@ -1,17 +1,18 @@
-#ifndef RS_ACTIONDRAWLINETANGENT2_H
-#define RS_ACTIONDRAWLINETANGENT2_H
+#ifndef __ACTIONDRAWLINETANGENT2_H__
+#define __ACTIONDRAWLINETANGENT2_H__
 
 #include "rs_line.h"
-#include "rs_previewactioninterface.h"
+#include "actioninterface.h"
 
 class RS_Entity;
 /**
  * This action class can handle user events to draw tangents from circle to
  * circle.
  *
+ * @author James Hammons
  * @author Andrew Mustun
  */
-class RS_ActionDrawLineTangent2: public RS_PreviewActionInterface
+class ActionDrawLineTangent2: public ActionInterface
 {
        private:
                enum Status {
@@ -20,8 +21,8 @@ class RS_ActionDrawLineTangent2: public RS_PreviewActionInterface
                };
 
        public:
-               RS_ActionDrawLineTangent2(RS_EntityContainer & container, GraphicView & graphicView);
-               ~RS_ActionDrawLineTangent2();
+               ActionDrawLineTangent2(RS_EntityContainer & container, GraphicView & graphicView);
+               ~ActionDrawLineTangent2();
 
                virtual void trigger();
                virtual void mouseMoveEvent(QMouseEvent * e);
@@ -43,4 +44,4 @@ class RS_ActionDrawLineTangent2: public RS_PreviewActionInterface
                RS_LineData data;
 };
 
-#endif
+#endif // __ACTIONDRAWLINETANGENT2_H__