X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Factions%2Factiondrawlinetangent2.h;h=4346d69d9b6a7ad1ead594936f68cd517158a2c5;hb=e1d1cacbb43055988d0d9db632fdf05c0bea9543;hp=62e315d1a1733c6cbc17d879626c719522577528;hpb=d774c2655ba2c3657a565f325411144452392277;p=architektonas diff --git a/src/actions/actiondrawlinetangent2.h b/src/actions/actiondrawlinetangent2.h index 62e315d..4346d69 100644 --- a/src/actions/actiondrawlinetangent2.h +++ b/src/actions/actiondrawlinetangent2.h @@ -1,10 +1,10 @@ #ifndef __ACTIONDRAWLINETANGENT2_H__ #define __ACTIONDRAWLINETANGENT2_H__ -#include "rs_line.h" +#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__