comparison OrthancServer/DatabaseWrapperBase.h @ 2697:e583478e0c6c jobs

New primitive in database SDK: "lookupIdentifierRange" to speed up range searches
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 03 Jul 2018 15:59:17 +0200
parents 878b59270859
children
comparison
equal deleted inserted replaced
2696:1b736d151ea1 2697:e583478e0c6c
197 void LookupIdentifier(std::list<int64_t>& result, 197 void LookupIdentifier(std::list<int64_t>& result,
198 ResourceType level, 198 ResourceType level,
199 const DicomTag& tag, 199 const DicomTag& tag,
200 IdentifierConstraintType type, 200 IdentifierConstraintType type,
201 const std::string& value); 201 const std::string& value);
202
203 void LookupIdentifierRange(std::list<int64_t>& result,
204 ResourceType level,
205 const DicomTag& tag,
206 const std::string& start,
207 const std::string& end);
202 }; 208 };
203 } 209 }
204 210