comparison Framework/Volumes/VolumeReslicer.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 2d8ab34c8c91
children
comparison
equal deleted inserted replaced
1297:6ab03e429f06 1299:c38c89684d83
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;