# HG changeset patch # User Sebastien Jodogne # Date 1647795812 -3600 # Node ID 51e4947aa3b36bbd62f40e27415f65a62bb3d40d # Parent 6a59dc426f932650b283a78b0d16723c493ffc6a removed ReadOnlyWebDavCollection from C++ plugin wrapper diff -r 6a59dc426f93 -r 51e4947aa3b3 OrthancServer/Plugins/Samples/Common/OrthancPluginCppWrapper.h --- 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& path, - const void* data, - size_t size) - { - return false; - } - - virtual bool CreateFolder(const std::vector& path) - { - return false; - } - - virtual bool DeleteItem(const std::vector& path) - { - return false; - } - }; -#endif }