comparison Framework/Toolbox/ParsedDicomCache.cpp @ 1308:adf234ecaa00 broker

Merge
author Benjamin Golinvaux <bgo@osimis.io>
date Wed, 04 Mar 2020 10:21:54 +0100
parents c38c89684d83
children
comparison
equal deleted inserted replaced
1307:8a28a9bf8876 1308:adf234ecaa00
24 namespace OrthancStone 24 namespace OrthancStone
25 { 25 {
26 class ParsedDicomCache::Item : public Orthanc::ICacheable 26 class ParsedDicomCache::Item : public Orthanc::ICacheable
27 { 27 {
28 private: 28 private:
29 std::auto_ptr<Orthanc::ParsedDicomFile> dicom_; 29 std::unique_ptr<Orthanc::ParsedDicomFile> dicom_;
30 size_t fileSize_; 30 size_t fileSize_;
31 bool hasPixelData_; 31 bool hasPixelData_;
32 32
33 public: 33 public:
34 Item(Orthanc::ParsedDicomFile* dicom, 34 Item(Orthanc::ParsedDicomFile* dicom,