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

IStorageArea::HasReadRange()
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 09 Feb 2021 11:37:13 +0100
parents 10357b2f7150
children 7053502fbf97
comparison
equal deleted inserted replaced
4497:10357b2f7150 4498:7b99e8bb8246
49 virtual IMemoryBuffer* ReadRange(const std::string& uuid, 49 virtual IMemoryBuffer* ReadRange(const std::string& uuid,
50 FileContentType type, 50 FileContentType type,
51 uint64_t start /* inclusive */, 51 uint64_t start /* inclusive */,
52 uint64_t end /* exclusive */) = 0; 52 uint64_t end /* exclusive */) = 0;
53 53
54 virtual bool HasReadRange() const = 0;
55
54 virtual void Remove(const std::string& uuid, 56 virtual void Remove(const std::string& uuid,
55 FileContentType type) = 0; 57 FileContentType type) = 0;
56 }; 58 };
57 } 59 }