X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Factions%2Factiondrawlinetangent2.h;h=4346d69d9b6a7ad1ead594936f68cd517158a2c5;hb=e1d1cacbb43055988d0d9db632fdf05c0bea9543;hp=7e048916115fc3c6aa56edb93999b43f42a36b5c;hpb=3239ef39dcee08fa6e8cd68cdf2727fc68cc7a8c;p=architektonas diff --git a/src/actions/actiondrawlinetangent2.h b/src/actions/actiondrawlinetangent2.h index 7e04891..4346d69 100644 --- a/src/actions/actiondrawlinetangent2.h +++ b/src/actions/actiondrawlinetangent2.h @@ -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__