comparison Framework/Volumes/VolumeReslicer.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
comparison
equal deleted inserted replaced
1296:86400fa16091 1298:8a0a62189f46
40 bool fastMode_; 40 bool fastMode_;
41 41
42 // Output of reslicing 42 // Output of reslicing
43 bool success_; 43 bool success_;
44 Extent2D extent_; 44 Extent2D extent_;
45 std::auto_ptr<Orthanc::Image> slice_; 45 std::unique_ptr<Orthanc::Image> slice_;
46 double pixelSpacing_; 46 double pixelSpacing_;
47 47
48 void CheckIterators(const ImageBuffer3D& source, 48 void CheckIterators(const ImageBuffer3D& source,
49 const CoordinateSystem3D& plane, 49 const CoordinateSystem3D& plane,
50 const OrientedVolumeBoundingBox& box) const; 50 const OrientedVolumeBoundingBox& box) const;