diff OrthancServer/Sources/Database/IDatabaseWrapper.h @ 5614:4640b7ae9a11 find-refactoring

moving normalization of constraints into FindRequest
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 09 May 2024 11:59:56 +0200
parents 862b54b4cfe2
children 3f13db27b399
line wrap: on
line diff
--- a/OrthancServer/Sources/Database/IDatabaseWrapper.h	Thu May 09 11:32:06 2024 +0200
+++ b/OrthancServer/Sources/Database/IDatabaseWrapper.h	Thu May 09 11:59:56 2024 +0200
@@ -359,13 +359,11 @@
 
       // This is only implemented if "HasIntegratedFind()" is "true"
       virtual void ExecuteFind(FindResponse& response,
-                               const FindRequest& request,
-                               const std::vector<DatabaseConstraint>& normalized) = 0;
+                               const FindRequest& request) = 0;
 
       // This is only implemented if "HasIntegratedFind()" is "false"
       virtual void ExecuteFind(std::list<std::string>& identifiers,
-                               const FindRequest& request,
-                               const std::vector<DatabaseConstraint>& normalized) = 0;
+                               const FindRequest& request) = 0;
 
       /**
        * This is only implemented if "HasIntegratedFind()" is