comparison OrthancServer/DatabaseWrapperBase.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
188 void SetProtectedPatient(int64_t internalId, 188 void SetProtectedPatient(int64_t internalId,
189 bool isProtected); 189 bool isProtected);
190 190
191 bool IsExistingResource(int64_t internalId); 191 bool IsExistingResource(int64_t internalId);
192 192
193 void LookupIdentifier(std::list<int64_t>& target, 193 void LookupIdentifierExact(std::list<int64_t>& target,
194 ResourceType level, 194 ResourceType level,
195 const DicomTag& tag, 195 const DicomTag& tag,
196 const std::string& value); 196 const std::string& value);
197 }; 197 };
198 } 198 }
199 199