comparison OrthancServer/OrthancRestApi/OrthancRestResources.cpp @ 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 318c2e83c2bd
comparison
equal deleted inserted replaced
1727:1ae29c5e52fb 1728:4941494b5dd8
890 const DicomTag& tag, 890 const DicomTag& tag,
891 const std::string& value, 891 const std::string& value,
892 ResourceType level) 892 ResourceType level)
893 { 893 {
894 std::list<std::string> tmp; 894 std::list<std::string> tmp;
895 index.LookupIdentifier(tmp, level, tag, value); 895 index.LookupIdentifierExact(tmp, level, tag, value);
896 896
897 for (std::list<std::string>::const_iterator 897 for (std::list<std::string>::const_iterator
898 it = tmp.begin(); it != tmp.end(); ++it) 898 it = tmp.begin(); it != tmp.end(); ++it)
899 { 899 {
900 result.push_back(std::make_pair(level, *it)); 900 result.push_back(std::make_pair(level, *it));