comparison OrthancFramework/Sources/DicomParsing/ParsedDicomCache.cpp @ 4495:fa2311f94d9f

IStorageArea::ReadRange()
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 04 Feb 2021 18:01:07 +0100
parents e4dae17035b9
children 7053502fbf97
comparison
equal deleted inserted replaced
4494:39192eb9b43d 4495:fa2311f94d9f
184 } 184 }
185 } 185 }
186 } 186 }
187 187
188 188
189 bool ParsedDicomCache::Accessor::IsValid() const
190 {
191 return file_ != NULL;
192 }
193
194
189 ParsedDicomFile& ParsedDicomCache::Accessor::GetDicom() const 195 ParsedDicomFile& ParsedDicomCache::Accessor::GetDicom() const
190 { 196 {
191 if (IsValid()) 197 if (IsValid())
192 { 198 {
193 assert(file_ != NULL); 199 assert(file_ != NULL);