X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fbase%2Frs_snapper.h;h=30e4a0cd0d55d0bef05efcf36cc7fcbc42093c03;hb=27d4a138d23453e93a833e9347444b828a971cb4;hp=baceae4dd893aba95259034c76de263c2b179379;hpb=16ce54abf01ca3032e42a5bb11a4afcf9014dcca;p=architektonas diff --git a/src/base/rs_snapper.h b/src/base/rs_snapper.h index baceae4..30e4a0c 100644 --- a/src/base/rs_snapper.h +++ b/src/base/rs_snapper.h @@ -2,14 +2,12 @@ #define RS_SNAPPER_H #include - #include "rs.h" -#include "rs_entitycontainer.h" -#include "rs_coordinateevent.h" +#include "vector.h" class RS_Entity; -class RS_GraphicView; -class Vector; +class RS_EntityContainer; +class GraphicView; /** * This class is used for snapping functions in a graphic view. @@ -24,7 +22,7 @@ class Vector; class RS_Snapper { public: - RS_Snapper(RS_EntityContainer & container, RS_GraphicView & graphicView); + RS_Snapper(RS_EntityContainer & container, GraphicView & graphicView); virtual ~RS_Snapper(); void init(); @@ -68,7 +66,7 @@ class RS_Snapper protected: RS_EntityContainer * container; - RS_GraphicView * graphicView; + GraphicView * graphicView; RS_Entity * keyEntity; Vector snapCoord; Vector snapSpot;