diff PostgreSQL/Plugins/PostgreSQLStorageArea.h @ 219:dd6cfc250747

removed useless class StorageAreaBuffer
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 29 Mar 2021 14:52:55 +0200
parents 3236894320d6
children a4918d57435c
line wrap: on
line diff
--- a/PostgreSQL/Plugins/PostgreSQLStorageArea.h	Fri Mar 26 18:06:46 2021 +0100
+++ b/PostgreSQL/Plugins/PostgreSQLStorageArea.h	Mon Mar 29 14:52:55 2021 +0200
@@ -40,17 +40,18 @@
       {
       }
 
-      virtual Dialect GetDialect() const
+      virtual Dialect GetDialect() const ORTHANC_OVERRIDE
       {
         return Dialect_PostgreSQL;
       }
 
-      virtual IDatabase* Open()
+      virtual IDatabase* Open() ORTHANC_OVERRIDE
       {
         return that_.OpenInternal();
       }
 
-      virtual void GetConnectionRetriesParameters(unsigned int& maxConnectionRetries, unsigned int& connectionRetryInterval)
+      virtual void GetConnectionRetriesParameters(unsigned int& maxConnectionRetries,
+                                                  unsigned int& connectionRetryInterval) ORTHANC_OVERRIDE
       {
         maxConnectionRetries = that_.parameters_.GetMaxConnectionRetries();
         connectionRetryInterval = that_.parameters_.GetConnectionRetryInterval();