X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Factions%2Factioninfoarea.h;h=e9674e5019c02e09373ad374160e7399fccbe009;hb=f62cebc26c7c3af447f0e4e4c43331f8589dce22;hp=9ba718da8a5b89f3cde3a5bdf007bcbe43e5fe29;hpb=3239ef39dcee08fa6e8cd68cdf2727fc68cc7a8c;p=architektonas diff --git a/src/actions/actioninfoarea.h b/src/actions/actioninfoarea.h index 9ba718d..e9674e5 100644 --- a/src/actions/actioninfoarea.h +++ b/src/actions/actioninfoarea.h @@ -5,7 +5,7 @@ #include "actioninterface.h" #include "vector.h" -class RS_Entity; +class Entity; /** * This action class can handle user events to measure distances between @@ -26,7 +26,7 @@ class ActionInfoArea: public ActionInterface }; public: - ActionInfoArea(RS_EntityContainer & container, GraphicView & graphicView); + ActionInfoArea(EntityContainer & container, GraphicView & graphicView); ~ActionInfoArea(); virtual void init(int status = 0); @@ -41,9 +41,9 @@ class ActionInfoArea: public ActionInterface private: Vector point1; Vector prev; - RS_Entity * currentLine; - RS_Entity * closingLine; - RS_InfoArea ia; + Entity * currentLine; + Entity * closingLine; + InfoArea ia; }; #endif // __ACTIONINFOAREA_H__