comparison OrthancServer/DatabaseWrapper.h @ 1727:1ae29c5e52fb db-changes

fix
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 20 Oct 2015 14:50:10 +0200
parents a7c05bbfaf6a
children 4941494b5dd8
comparison
equal deleted inserted replaced
1725:a7c05bbfaf6a 1727:1ae29c5e52fb
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 LookupIdentifier(std::list<int64_t>& target,
319 ResourceType level,
319 const DicomTag& tag, 320 const DicomTag& tag,
320 const std::string& value) 321 const std::string& value)
321 { 322 {
322 base_.LookupIdentifier(target, tag, value); 323 base_.LookupIdentifier(target, level, tag, value);
323 } 324 }
324 325
325 virtual void GetAllMetadata(std::map<MetadataType, std::string>& target, 326 virtual void GetAllMetadata(std::map<MetadataType, std::string>& target,
326 int64_t id); 327 int64_t id);
327 328