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

IStorageArea::ReadRange()
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 04 Feb 2021 18:01:07 +0100
parents 83a6a84ba9df
children 7053502fbf97
comparison
equal deleted inserted replaced
4494:39192eb9b43d 4495:fa2311f94d9f
70 70
71 public: 71 public:
72 Accessor(ParsedDicomCache& that, 72 Accessor(ParsedDicomCache& that,
73 const std::string& id); 73 const std::string& id);
74 74
75 bool IsValid() const 75 bool IsValid() const;
76 {
77 return file_ != NULL;
78 }
79 76
80 ParsedDicomFile& GetDicom() const; 77 ParsedDicomFile& GetDicom() const;
81 78
82 size_t GetFileSize() const; 79 size_t GetFileSize() const;
83 }; 80 };