comparison OrthancServer/DatabaseWrapper.h @ 1729:54d78925cbb6 db-changes

notes
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 20 Oct 2015 17:39:58 +0200
parents 4941494b5dd8
children 38dda23c7d7d
comparison
equal deleted inserted replaced
1728:4941494b5dd8 1729:54d78925cbb6
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,
327 const DicomTag& tag,
328 const std::string& value)
329 {
330 base_.LookupIdentifierWildcard(target, tag, value);
331 }
332
326 virtual void GetAllMetadata(std::map<MetadataType, std::string>& target, 333 virtual void GetAllMetadata(std::map<MetadataType, std::string>& target,
327 int64_t id); 334 int64_t id);
328 335
329 virtual unsigned int GetDatabaseVersion() 336 virtual unsigned int GetDatabaseVersion()
330 { 337 {