diff Framework/Radiography/RadiographyAlphaLayer.h @ 1298:8a0a62189f46

replacing std::auto_ptr by std::unique_ptr
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 02 Mar 2020 16:31:30 +0100
parents 1c7ae79c426d
children 257f2c9a02ac
line wrap: on
line diff
--- a/Framework/Radiography/RadiographyAlphaLayer.h	Sun Feb 23 15:25:49 2020 +0100
+++ b/Framework/Radiography/RadiographyAlphaLayer.h	Mon Mar 02 16:31:30 2020 +0100
@@ -23,6 +23,8 @@
 
 #include "RadiographyLayer.h"
 
+#include <Core/Compatibility.h>
+
 namespace OrthancStone
 {
   class RadiographyScene;
@@ -33,7 +35,7 @@
   class RadiographyAlphaLayer : public RadiographyLayer
   {
   private:
-    std::auto_ptr<Orthanc::ImageAccessor>  alpha_;       // Grayscale8 in the range [0, 255]  0 = transparent, 255 = opaque -> the foreground value will be displayed
+    std::unique_ptr<Orthanc::ImageAccessor>  alpha_;       // Grayscale8 in the range [0, 255]  0 = transparent, 255 = opaque -> the foreground value will be displayed
     float                                  foreground_;  // in the range [0.0, 65535.0]
 
   public: