diff Azure/AzureBlobStoragePlugin.cpp @ 80:b3787f4aa16a

fix
author Alain Mazy <am@osimis.io>
date Sat, 15 Oct 2022 07:49:30 +0200
parents 16514270d9ca
children e29987d80ecf
line wrap: on
line diff
--- a/Azure/AzureBlobStoragePlugin.cpp	Fri Oct 14 16:22:26 2022 +0200
+++ b/Azure/AzureBlobStoragePlugin.cpp	Sat Oct 15 07:49:30 2022 +0200
@@ -29,7 +29,6 @@
 
 // Create aliases to make the code easier to read.
 namespace as = azure::storage;
-static const char* const PLUGIN_SECTION = "AzureBlobStorage";
 
 class AzureBlobStoragePlugin : public BaseStorage
 {
@@ -51,7 +50,6 @@
   virtual IWriter* GetWriterForObject(const char* uuid, OrthancPluginContentType type, bool encryptionEnabled);
   virtual IReader* GetReaderForObject(const char* uuid, OrthancPluginContentType type, bool encryptionEnabled);
   virtual void DeleteObject(const char* uuid, OrthancPluginContentType type, bool encryptionEnabled);
-  virtual const char* GetConfigurationSectionName() {return PLUGIN_SECTION;};
 };