comparison OrthancServer/DatabaseWrapper.h @ 1718:2b812969e136 db-changes

getting rid of an IDatabaseWrapper::LookupIdentifier flavor
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 20 Oct 2015 10:11:22 +0200
parents 4db9200c7f46
children a7c05bbfaf6a
comparison
equal deleted inserted replaced
1717:3926e6317a43 1718:2b812969e136
317 317
318 virtual void LookupIdentifier(std::list<int64_t>& target, 318 virtual void LookupIdentifier(std::list<int64_t>& target,
319 const DicomTag& tag, 319 const DicomTag& tag,
320 const std::string& value); 320 const std::string& value);
321 321
322 virtual void LookupIdentifier(std::list<int64_t>& target,
323 const std::string& value)
324 {
325 base_.LookupIdentifier(target, value);
326 }
327
328 virtual void GetAllMetadata(std::map<MetadataType, std::string>& target, 322 virtual void GetAllMetadata(std::map<MetadataType, std::string>& target,
329 int64_t id); 323 int64_t id);
330 324
331 virtual unsigned int GetDatabaseVersion() 325 virtual unsigned int GetDatabaseVersion()
332 { 326 {