diff Applications/Samples/SimpleViewerApplicationSingleFile.h @ 1299:c38c89684d83 broker

replacing std::auto_ptr by std::unique_ptr
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 02 Mar 2020 17:21:24 +0100
parents 7ec8fea061b9
children 257f2c9a02ac
line wrap: on
line diff
--- a/Applications/Samples/SimpleViewerApplicationSingleFile.h	Sun Feb 23 15:32:24 2020 +0100
+++ b/Applications/Samples/SimpleViewerApplicationSingleFile.h	Mon Mar 02 17:21:24 2020 +0100
@@ -239,8 +239,8 @@
       };
 
       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_;
       std::vector<boost::shared_ptr<Deprecated::SliceViewerWidget> >      thumbnails_;
@@ -253,7 +253,7 @@
       Deprecated::WidgetViewport*        wasmViewport2_;
 
       Deprecated::IStatusBar*                          statusBar_;
-      std::auto_ptr<Deprecated::SmartLoader>           smartLoader_;
+      std::unique_ptr<Deprecated::SmartLoader>           smartLoader_;
 
       Orthanc::Font                        font_;