diff OrthancServer/IDatabaseWrapper.h @ 1509:0586ed8897f1

limit and since arguments while retrieving DICOM resources in the REST API
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 10 Aug 2015 10:01:59 +0200
parents 0ac74fa21db8
children c40fe92a68e7
line wrap: on
line diff
--- a/OrthancServer/IDatabaseWrapper.h	Fri Aug 07 20:14:49 2015 +0200
+++ b/OrthancServer/IDatabaseWrapper.h	Mon Aug 10 10:01:59 2015 +0200
@@ -81,6 +81,10 @@
     virtual void GetAllPublicIds(std::list<std::string>& target,
                                  ResourceType resourceType) = 0;
 
+    virtual void GetAllPublicIds(std::list<std::string>& target,
+                                 ResourceType resourceType,
+                                 size_t since,
+                                 size_t limit) = 0;
 
     virtual void GetChanges(std::list<ServerIndexChange>& target /*out*/,
                             bool& done /*out*/,