comparison OrthancServer/IDatabaseWrapper.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
144 FileContentType contentType) = 0; 144 FileContentType contentType) = 0;
145 145
146 virtual bool LookupGlobalProperty(std::string& target, 146 virtual bool LookupGlobalProperty(std::string& target,
147 GlobalProperty property) = 0; 147 GlobalProperty property) = 0;
148 148
149 virtual void LookupIdentifier(std::list<int64_t>& target, 149 virtual void LookupIdentifierExact(std::list<int64_t>& target,
150 ResourceType level, 150 ResourceType level,
151 const DicomTag& tag, 151 const DicomTag& tag,
152 const std::string& value) = 0; 152 const std::string& value) = 0;
153 153
154 virtual bool LookupMetadata(std::string& target, 154 virtual bool LookupMetadata(std::string& target,
155 int64_t id, 155 int64_t id,
156 MetadataType type) = 0; 156 MetadataType type) = 0;
157 157