comparison OrthancServer/DatabaseWrapper.h @ 521:2c739f76d0bb

lookup tag values
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 29 Aug 2013 14:50:23 +0200
parents 935e8c7e0b18
children c2be0a0e049e
comparison
equal deleted inserted replaced
519:1b2cdc855bd3 521:2c739f76d0bb
223 uint64_t IncrementGlobalSequence(GlobalProperty property); 223 uint64_t IncrementGlobalSequence(GlobalProperty property);
224 224
225 void ClearTable(const std::string& tableName); 225 void ClearTable(const std::string& tableName);
226 226
227 bool IsExistingResource(int64_t internalId); 227 bool IsExistingResource(int64_t internalId);
228
229 void LookupTagValue(std::list<int64_t>& result,
230 DicomTag tag,
231 const std::string& value);
232
233 void LookupTagValue(std::list<int64_t>& result,
234 const std::string& value);
228 }; 235 };
229 } 236 }