diff Framework/Layers/LineLayerRenderer.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/LineLayerRenderer.h	Mon May 20 16:26:34 2019 +0200
+++ b/Framework/Layers/LineLayerRenderer.h	Tue May 21 11:43:25 2019 +0200
@@ -23,7 +23,7 @@
 
 #include "ILayerRenderer.h"
 
-namespace OrthancStone
+namespace Deprecated
 {
   class LineLayerRenderer : public ILayerRenderer
   {
@@ -32,7 +32,7 @@
     double              y1_;
     double              x2_;
     double              y2_;
-    CoordinateSystem3D  plane_;
+    OrthancStone::CoordinateSystem3D  plane_;
     bool                visible_;
     uint8_t             color_[3];
 
@@ -41,14 +41,14 @@
                       double y1,
                       double x2,
                       double y2,
-                      const CoordinateSystem3D& plane);
+                      const OrthancStone::CoordinateSystem3D& plane);
 
-    virtual bool RenderLayer(CairoContext& context,
+    virtual bool RenderLayer(OrthancStone::CairoContext& context,
                              const ViewportGeometry& view);
 
     virtual void SetLayerStyle(const RenderStyle& style);
 
-    virtual const CoordinateSystem3D& GetLayerPlane()
+    virtual const OrthancStone::CoordinateSystem3D& GetLayerPlane()
     {
       return plane_;
     }