comparison 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
comparison
equal deleted inserted replaced
1508:86394eb9f5bb 1509:0586ed8897f1
168 virtual uint64_t GetResourceCount(ResourceType resourceType); 168 virtual uint64_t GetResourceCount(ResourceType resourceType);
169 169
170 virtual void GetAllPublicIds(std::list<std::string>& target, 170 virtual void GetAllPublicIds(std::list<std::string>& target,
171 ResourceType resourceType); 171 ResourceType resourceType);
172 172
173 virtual void GetAllPublicIds(std::list<std::string>& target,
174 ResourceType resourceType,
175 size_t since,
176 size_t limit);
177
173 virtual bool SelectPatientToRecycle(int64_t& internalId); 178 virtual bool SelectPatientToRecycle(int64_t& internalId);
174 179
175 virtual bool SelectPatientToRecycle(int64_t& internalId, 180 virtual bool SelectPatientToRecycle(int64_t& internalId,
176 int64_t patientIdToAvoid); 181 int64_t patientIdToAvoid);
177 182