]> Shamusworld >> Repos - architektonas/blobdiff - src/actions/actiondrawlinetangent2.h
Removed unnecessary RS_ prefix from classes and whatnot.
[architektonas] / src / actions / actiondrawlinetangent2.h
index 7e048916115fc3c6aa56edb93999b43f42a36b5c..4346d69d9b6a7ad1ead594936f68cd517158a2c5 100644 (file)
@@ -4,7 +4,7 @@
 #include "line.h"
 #include "actioninterface.h"
 
-class RS_Entity;
+class Entity;
 /**
  * This action class can handle user events to draw tangents from circle to
  * circle.
@@ -21,7 +21,7 @@ class ActionDrawLineTangent2: public ActionInterface
                };
 
        public:
-               ActionDrawLineTangent2(RS_EntityContainer & container, GraphicView & graphicView);
+               ActionDrawLineTangent2(EntityContainer & container, GraphicView & graphicView);
                ~ActionDrawLineTangent2();
 
                virtual void trigger();
@@ -35,13 +35,13 @@ class ActionDrawLineTangent2: public ActionInterface
 
        private:
                /** Closest tangent. */
-               RS_Line * tangent;
+               Line * tangent;
                /** 1st chosen entity */
-               RS_Entity * circle1;
+               Entity * circle1;
                /** 2nd chosen entity */
-               RS_Entity * circle2;
+               Entity * circle2;
                /** Data of new tangent */
-               RS_LineData data;
+               LineData data;
 };
 
 #endif // __ACTIONDRAWLINETANGENT2_H__