comparison OrthancServer/DatabaseWrapper.h @ 1728:4941494b5dd8 db-changes

rename LookupIdentifier as LookupIdentifierExact
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 20 Oct 2015 15:03:52 +0200
parents 1ae29c5e52fb
children 54d78925cbb6
comparison
equal deleted inserted replaced
1727:1ae29c5e52fb 1728:4941494b5dd8
313 virtual bool IsExistingResource(int64_t internalId) 313 virtual bool IsExistingResource(int64_t internalId)
314 { 314 {
315 return base_.IsExistingResource(internalId); 315 return base_.IsExistingResource(internalId);
316 } 316 }
317 317
318 virtual void LookupIdentifier(std::list<int64_t>& target, 318 virtual void LookupIdentifierExact(std::list<int64_t>& target,
319 ResourceType level, 319 ResourceType level,
320 const DicomTag& tag, 320 const DicomTag& tag,
321 const std::string& value) 321 const std::string& value)
322 { 322 {
323 base_.LookupIdentifier(target, level, tag, value); 323 base_.LookupIdentifierExact(target, level, tag, value);
324 } 324 }
325 325
326 virtual void GetAllMetadata(std::map<MetadataType, std::string>& target, 326 virtual void GetAllMetadata(std::map<MetadataType, std::string>& target,
327 int64_t id); 327 int64_t id);
328 328