]> Shamusworld >> Repos - architektonas/blobdiff - src/base/rs_selection.h
Adding missing implementation.
[architektonas] / src / base / rs_selection.h
index d1239e11ec2f351f8c429e83c1304aea2f0e9a7f..2e6ffb3271f779486c516c06ca49edefc8cb1f86 100644 (file)
@@ -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