changeset 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 6a59dc426f93
children dfbe764995cf
files OrthancServer/Plugins/Samples/Common/OrthancPluginCppWrapper.h
diffstat 1 files changed, 0 insertions(+), 24 deletions(-) [+]
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
 }