comparison OrthancFramework/Sources/HttpServer/HttpServer.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
237 237
238 #if ORTHANC_ENABLE_PUGIXML == 1 238 #if ORTHANC_ENABLE_PUGIXML == 1
239 void Register(const std::vector<std::string>& root, 239 void Register(const std::vector<std::string>& root,
240 IWebDavBucket* bucket); // Takes ownership 240 IWebDavBucket* bucket); // Takes ownership
241 #endif 241 #endif
242
243 bool HandleWebDav(HttpOutput& output,
244 const std::string& method,
245 const IHttpHandler::Arguments& headers,
246 const std::string& uri);
242 }; 247 };
243 } 248 }