diff Framework/Layers/DicomStructureSetSlicer.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 42dadae61fa9
children
line wrap: on
line diff
--- a/Framework/Layers/DicomStructureSetSlicer.h	Mon May 20 16:26:34 2019 +0200
+++ b/Framework/Layers/DicomStructureSetSlicer.h	Tue May 21 11:43:25 2019 +0200
@@ -24,11 +24,11 @@
 #include "IVolumeSlicer.h"
 #include "../Volumes/StructureSetLoader.h"
 
-namespace OrthancStone
+namespace Deprecated
 {
   class DicomStructureSetSlicer :
     public IVolumeSlicer,
-    public IObserver
+    public OrthancStone::IObserver
   {
   private:
     class Renderer;
@@ -42,15 +42,15 @@
     }
 
   public:
-    DicomStructureSetSlicer(MessageBroker& broker,
+    DicomStructureSetSlicer(OrthancStone::MessageBroker& broker,
                             StructureSetLoader& loader);
 
-    virtual bool GetExtent(std::vector<Vector>& points,
-                           const CoordinateSystem3D& viewportPlane)
+    virtual bool GetExtent(std::vector<OrthancStone::Vector>& points,
+                           const OrthancStone::CoordinateSystem3D& viewportPlane)
     {
       return false;
     }
 
-    virtual void ScheduleLayerCreation(const CoordinateSystem3D& viewportPlane);
+    virtual void ScheduleLayerCreation(const OrthancStone::CoordinateSystem3D& viewportPlane);
   };
 }