Mercurial > hg > orthanc
diff OrthancServer/Plugins/Samples/Common/OrthancPluginCppWrapper.h @ 4946:51e4947aa3b3
removed ReadOnlyWebDavCollection from C++ plugin wrapper
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Sun, 20 Mar 2022 18:03:32 +0100 |
parents | 47d734fa30f6 |
children | 501411a67f10 |
line wrap: on
line diff
--- a/OrthancServer/Plugins/Samples/Common/OrthancPluginCppWrapper.h Sun Mar 20 11:35:17 2022 +0100 +++ b/OrthancServer/Plugins/Samples/Common/OrthancPluginCppWrapper.h Sun Mar 20 18:03:32 2022 +0100 @@ -1357,28 +1357,4 @@ IWebDavCollection& collection); }; #endif - - -#if HAS_ORTHANC_PLUGIN_WEBDAV == 1 - class ReadOnlyWebDavCollection : public IWebDavCollection - { - public: - virtual bool StoreFile(const std::vector<std::string>& path, - const void* data, - size_t size) - { - return false; - } - - virtual bool CreateFolder(const std::vector<std::string>& path) - { - return false; - } - - virtual bool DeleteItem(const std::vector<std::string>& path) - { - return false; - } - }; -#endif }