X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fbase%2Frs_selection.h;h=2e6ffb3271f779486c516c06ca49edefc8cb1f86;hb=20cce16e98fc9b052c5862efa6394a285971e846;hp=d1239e11ec2f351f8c429e83c1304aea2f0e9a7f;hpb=89e127aa3dbd74d3158e6dbe0ca1703420c04395;p=architektonas diff --git a/src/base/rs_selection.h b/src/base/rs_selection.h index d1239e1..2e6ffb3 100644 --- a/src/base/rs_selection.h +++ b/src/base/rs_selection.h @@ -2,7 +2,9 @@ #define RS_SELECTION_H #include "rs_entitycontainer.h" -#include "rs_graphicview.h" + +class Drawing; +class GraphicView; /** * API Class for selecting entities. @@ -16,7 +18,7 @@ class RS_Selection { public: RS_Selection(RS_EntityContainer & entityContainer, - RS_GraphicView * graphicView = NULL); + GraphicView * graphicView = NULL); void selectSingle(RS_Entity * e); void selectAll(bool select = true); @@ -36,7 +38,7 @@ class RS_Selection protected: RS_EntityContainer * container; Drawing * graphic; - RS_GraphicView * graphicView; + GraphicView * graphicView; }; #endif