diff Applications/Samples/SampleInteractor.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 2d8ab34c8c91
children
line wrap: on
line diff
--- a/Applications/Samples/SampleInteractor.h	Sun Feb 23 15:25:49 2020 +0100
+++ b/Applications/Samples/SampleInteractor.h	Mon Mar 02 16:31:30 2020 +0100
@@ -47,7 +47,7 @@
                        VolumeProjection projection, 
                        bool reverse)
       {
-        std::auto_ptr<ParallelSlices> slices(volume.GetGeometry(projection, reverse));
+        std::unique_ptr<ParallelSlices> slices(volume.GetGeometry(projection, reverse));
         cursor_.SetGeometry(*slices);
       }
 
@@ -56,7 +56,7 @@
       {
         if (reverse)
         {
-          std::auto_ptr<ParallelSlices> slices(series.GetGeometry().Reverse());
+          std::unique_ptr<ParallelSlices> slices(series.GetGeometry().Reverse());
           cursor_.SetGeometry(*slices);
         }
         else