diff Framework/Layers/ILayerRenderer.h @ 726:4f2416d519b4

moving layers, widgets and loaders to Deprecated namespace
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 21 May 2019 11:43:25 +0200
parents b70e9be013e4
children
line wrap: on
line diff
--- a/Framework/Layers/ILayerRenderer.h	Mon May 20 16:26:34 2019 +0200
+++ b/Framework/Layers/ILayerRenderer.h	Tue May 21 11:43:25 2019 +0200
@@ -26,7 +26,7 @@
 #include "../Toolbox/ViewportGeometry.h"
 #include "RenderStyle.h"
 
-namespace OrthancStone
+namespace Deprecated
 {
   class ILayerRenderer : public boost::noncopyable
   {
@@ -35,12 +35,12 @@
     {
     }
     
-    virtual bool RenderLayer(CairoContext& context,
+    virtual bool RenderLayer(OrthancStone::CairoContext& context,
                              const ViewportGeometry& view) = 0;
 
     virtual void SetLayerStyle(const RenderStyle& style) = 0;
 
-    virtual const CoordinateSystem3D& GetLayerPlane() = 0;
+    virtual const OrthancStone::CoordinateSystem3D& GetLayerPlane() = 0;
     
     virtual bool IsFullQuality() = 0;
   };