comparison OrthancServer/DatabaseWrapper.h @ 1745:38dda23c7d7d db-changes

LookupIdentifierQuery
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 26 Oct 2015 13:47:50 +0100
parents 54d78925cbb6
children d143db00a794
comparison
equal deleted inserted replaced
1744:b3de74dec2d5 1745:38dda23c7d7d
321 const std::string& value) 321 const std::string& value)
322 { 322 {
323 base_.LookupIdentifierExact(target, level, tag, value); 323 base_.LookupIdentifierExact(target, level, tag, value);
324 } 324 }
325 325
326 virtual void LookupIdentifierWildcard(std::list<int64_t>& target, 326 virtual void LookupIdentifier(const LookupIdentifierQuery& query)
327 const DicomTag& tag, 327 {
328 const std::string& value) 328 base_.LookupIdentifier(query);
329 {
330 base_.LookupIdentifierWildcard(target, tag, value);
331 } 329 }
332 330
333 virtual void GetAllMetadata(std::map<MetadataType, std::string>& target, 331 virtual void GetAllMetadata(std::map<MetadataType, std::string>& target,
334 int64_t id); 332 int64_t id);
335 333