comparison OrthancServer/Sources/ServerToolbox.cpp @ 5184:dd085f7e7e71

cleaning new constructors of StorageAccessor
author Sebastien Jodogne <s.jodogne@gmail.com>
date Sat, 25 Mar 2023 12:20:34 +0100
parents 22966345eaba
children 0ea402b4d901
comparison
equal deleted inserted replaced
5183:5ec3dcdf78b9 5184:dd085f7e7e71
142 } 142 }
143 143
144 try 144 try
145 { 145 {
146 // Read and parse the content of the DICOM file 146 // Read and parse the content of the DICOM file
147 StorageAccessor accessor(storageArea, NULL); // no cache 147 StorageAccessor accessor(storageArea); // no cache
148 148
149 std::string content; 149 std::string content;
150 accessor.Read(content, attachment); 150 accessor.Read(content, attachment);
151 151
152 ParsedDicomFile dicom(content); 152 ParsedDicomFile dicom(content);