diff OrthancServer/Sources/Database/BaseDatabaseWrapper.cpp @ 5553:28cc06e4859a large-queries

Added ExtendedApiV1: /changes
author Alain Mazy <am@orthanc.team>
date Thu, 11 Apr 2024 19:02:20 +0200
parents bbe45a71f5cd
children 3765085693e5
line wrap: on
line diff
--- a/OrthancServer/Sources/Database/BaseDatabaseWrapper.cpp	Fri Mar 29 23:23:01 2024 +0100
+++ b/OrthancServer/Sources/Database/BaseDatabaseWrapper.cpp	Thu Apr 11 19:02:20 2024 +0200
@@ -44,6 +44,17 @@
     throw OrthancException(ErrorCode_NotImplemented);  // Not supported
   }
 
+  void BaseDatabaseWrapper::BaseTransaction::GetChanges2(std::list<ServerIndexChange>& target /*out*/,
+                                                         bool& done /*out*/,
+                                                         int64_t since,
+                                                         int64_t to,
+                                                         uint32_t limit,
+                                                         ChangeType filterType)
+  {
+    throw OrthancException(ErrorCode_NotImplemented);  // Not supported
+  }
+
+
 
   uint64_t BaseDatabaseWrapper::MeasureLatency()
   {