diff Plugins/Engine/OrthancPluginDatabase.cpp @ 3025:039a9d262d64 db-changes

preparing to speed up find in databases
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 17 Dec 2018 17:05:28 +0100
parents d207f6ac1f86
children fd587cf51a89
line wrap: on
line diff
--- a/Plugins/Engine/OrthancPluginDatabase.cpp	Mon Dec 17 10:26:01 2018 +0100
+++ b/Plugins/Engine/OrthancPluginDatabase.cpp	Mon Dec 17 17:05:28 2018 +0100
@@ -1160,4 +1160,29 @@
       return currentDiskSize_ > threshold;
     }      
   }
+
+
+  void OrthancPluginDatabase::FindOneChildInstance(std::vector<std::string>& instancesId,
+                                                   const std::vector<std::string>& resourcesId,
+                                                   ResourceType level)
+  {
+    throw OrthancException(ErrorCode_NotImplemented);
+  }
+
+
+  void OrthancPluginDatabase::ApplyLookupPatients(std::vector<std::string>& patientsId,
+                                                  const DatabaseLookup& lookup,
+                                                  size_t limit)
+  {
+    throw OrthancException(ErrorCode_NotImplemented);
+  }
+  
+
+  void OrthancPluginDatabase::ApplyLookupResources(std::vector<std::string>& patientsId,
+                                                   const DatabaseLookup& lookup,
+                                                   ResourceType queryLevel,
+                                                   size_t limit)
+  {
+    throw OrthancException(ErrorCode_NotImplemented);
+  }
 }