]> Shamusworld >> Repos - architektonas/blobdiff - src/actions/actiondrawlinetangent1.h
Bugfixes related to removing Snapper class.
[architektonas] / src / actions / actiondrawlinetangent1.h
index 8d369c8b64d802e3332a03bf08851c879676cc71..85f097dacd926cac9429d7e625a68017d15354df 100644 (file)
@@ -1,12 +1,12 @@
 #ifndef __ACTIONDRAWLINETANGENT1_H__
 #define __ACTIONDRAWLINETANGENT1_H__
 
-#include "rs_line.h"
+#include "line.h"
 #include "actioninterface.h"
 #include "vector.h"
 
-class RS_Line;
-class RS_Entity;
+class Line;
+class Entity;
 
 /**
  * This action class can handle user events to draw tangents from points
@@ -24,7 +24,7 @@ class ActionDrawLineTangent1: public ActionInterface
                };
 
        public:
-               ActionDrawLineTangent1(RS_EntityContainer & container, GraphicView & graphicView);
+               ActionDrawLineTangent1(EntityContainer & container, GraphicView & graphicView);
                ~ActionDrawLineTangent1();
 
                virtual void trigger();
@@ -37,13 +37,13 @@ class ActionDrawLineTangent1: public ActionInterface
 
        private:
                /** Closest tangent. */
-               RS_Line * tangent;
+               Line * tangent;
                /** Chosen startpoint */
                Vector point;
                /** Chosen entity */
-               RS_Entity * circle;
+               Entity * circle;
                /** Data of new tangent */
-               RS_LineData data;
+               LineData data;
 };
 
 #endif // __ACTIONDRAWLINETANGENT1_H__