comparison OrthancFramework/Sources/FileStorage/FilesystemStorage.h @ 4520:f5cb0c0ffbed

added unit test OrthancFramework.SizeOf to dump sizeof all the public classes in the Orthanc framework
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 22 Feb 2021 18:30:31 +0100
parents 7b99e8bb8246
children 7053502fbf97
comparison
equal deleted inserted replaced
4519:a3c6678aa7b1 4520:f5cb0c0ffbed
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 89 virtual bool HasReadRange() const ORTHANC_OVERRIDE;
90 {
91 return true;
92 }
93 90
94 virtual void Remove(const std::string& uuid, 91 virtual void Remove(const std::string& uuid,
95 FileContentType type) ORTHANC_OVERRIDE; 92 FileContentType type) ORTHANC_OVERRIDE;
96 93
97 void ListAllFiles(std::set<std::string>& result) const; 94 void ListAllFiles(std::set<std::string>& result) const;