changeset 142:bbd57f5672fa

fix compilation of SQLite plugin
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 04 Feb 2020 09:34:56 +0100
parents 0b3e9ee53c46
children 33467fb6aee8 740d9829f52e
files SQLite/Plugins/SQLiteIndex.h
diffstat 1 files changed, 8 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/SQLite/Plugins/SQLiteIndex.h	Mon Feb 03 22:29:51 2020 +0100
+++ b/SQLite/Plugins/SQLiteIndex.h	Tue Feb 04 09:34:56 2020 +0100
@@ -48,6 +48,14 @@
       {
         return that_.OpenInternal();
       }
+
+      virtual void GetConnectionRetriesParameters(unsigned int& maxConnectionRetries,
+                                                  unsigned int& connectionRetryInterval)
+      {
+        // Dummy parameters
+        maxConnectionRetries = 0;
+        connectionRetryInterval = 1;
+      }
     };
 
     OrthancPluginContext*  context_;