comparison OrthancFramework/Sources/FileStorage/FilesystemStorage.h @ 4498:7b99e8bb8246

IStorageArea::HasReadRange()
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 09 Feb 2021 11:37:13 +0100
parents fa2311f94d9f
children f5cb0c0ffbed
comparison
equal deleted inserted replaced
4497:10357b2f7150 4498:7b99e8bb8246
84 virtual IMemoryBuffer* ReadRange(const std::string& uuid, 84 virtual IMemoryBuffer* ReadRange(const std::string& uuid,
85 FileContentType type, 85 FileContentType type,
86 uint64_t start /* inclusive */, 86 uint64_t start /* inclusive */,
87 uint64_t end /* exclusive */) ORTHANC_OVERRIDE; 87 uint64_t end /* exclusive */) ORTHANC_OVERRIDE;
88 88
89 virtual bool HasReadRange() const ORTHANC_OVERRIDE
90 {
91 return true;
92 }
93
89 virtual void Remove(const std::string& uuid, 94 virtual void Remove(const std::string& uuid,
90 FileContentType type) ORTHANC_OVERRIDE; 95 FileContentType type) ORTHANC_OVERRIDE;
91 96
92 void ListAllFiles(std::set<std::string>& result) const; 97 void ListAllFiles(std::set<std::string>& result) const;
93 98