diff OrthancServer/DatabaseWrapper.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/DatabaseWrapper.h	Fri Aug 07 20:14:49 2015 +0200
+++ b/OrthancServer/DatabaseWrapper.h	Mon Aug 10 10:01:59 2015 +0200
@@ -170,6 +170,11 @@
     virtual void GetAllPublicIds(std::list<std::string>& target,
                                  ResourceType resourceType);
 
+    virtual void GetAllPublicIds(std::list<std::string>& target,
+                                 ResourceType resourceType,
+                                 size_t since,
+                                 size_t limit);
+
     virtual bool SelectPatientToRecycle(int64_t& internalId);
 
     virtual bool SelectPatientToRecycle(int64_t& internalId,