diff Applications/Samples/SimpleViewer/SimpleViewerApplication.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/SimpleViewer/SimpleViewerApplication.h	Sun Feb 23 15:25:49 2020 +0100
+++ b/Applications/Samples/SimpleViewer/SimpleViewerApplication.h	Mon Mar 02 16:31:30 2020 +0100
@@ -81,8 +81,8 @@
   private:
     Tool                                currentTool_;
 
-    std::auto_ptr<MainWidgetInteractor> mainWidgetInteractor_;
-    std::auto_ptr<ThumbnailInteractor>  thumbnailInteractor_;
+    std::unique_ptr<MainWidgetInteractor> mainWidgetInteractor_;
+    std::unique_ptr<ThumbnailInteractor>  thumbnailInteractor_;
     Deprecated::LayoutWidget*                       mainLayout_;
     Deprecated::LayoutWidget*                       thumbnailsLayout_;
     Deprecated::SliceViewerWidget*                  mainWidget_;
@@ -94,7 +94,7 @@
     Deprecated::WidgetViewport*       wasmViewport2_;
 
     Deprecated::IStatusBar*                         statusBar_;
-    std::auto_ptr<Deprecated::SmartLoader>          smartLoader_;
+    std::unique_ptr<Deprecated::SmartLoader>          smartLoader_;
 
     Orthanc::Font                       font_;