comparison OrthancServer/DatabaseWrapperBase.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 1ae29c5e52fb
comparison
equal deleted inserted replaced
1717:3926e6317a43 1718:2b812969e136
191 bool IsExistingResource(int64_t internalId); 191 bool IsExistingResource(int64_t internalId);
192 192
193 void LookupIdentifier(std::list<int64_t>& target, 193 void LookupIdentifier(std::list<int64_t>& target,
194 const DicomTag& tag, 194 const DicomTag& tag,
195 const std::string& value); 195 const std::string& value);
196
197 void LookupIdentifier(std::list<int64_t>& target,
198 const std::string& value);
199 }; 196 };
200 } 197 }
201 198