comparison OrthancFramework/Sources/HttpServer/IWebDavBucket.h @ 4227:7fff7e683d65

basic implementation of WebDAV handler
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 05 Oct 2020 10:55:24 +0200
parents 7bd5eab3ba25
children c8c0bbaaace3
comparison
equal deleted inserted replaced
4226:7bd5eab3ba25 4227:7fff7e683d65
150 150
151 virtual ~IWebDavBucket() 151 virtual ~IWebDavBucket()
152 { 152 {
153 } 153 }
154 154
155 virtual bool IsExistingFolder(const std::vector<std::string>& path) = 0;
156
155 virtual bool ListCollection(Collection& collection, 157 virtual bool ListCollection(Collection& collection,
156 const std::vector<std::string>& path) = 0; 158 const std::vector<std::string>& path) = 0;
157 159
158 virtual bool GetFileContent(std::string& content, 160 virtual bool GetFileContent(std::string& content,
159 const std::vector<std::string>& path) = 0; 161 const std::vector<std::string>& path) = 0;