comparison OrthancServer/DatabaseWrapper.h @ 1162:1ea4094d077c db-changes

refactoring
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 17 Sep 2014 13:25:37 +0200
parents 649d47854314
children 5b2d8c280ac2
comparison
equal deleted inserted replaced
1161:82cbf1480aac 1162:1ea4094d077c
227 227
228 void ClearTable(const std::string& tableName); 228 void ClearTable(const std::string& tableName);
229 229
230 bool IsExistingResource(int64_t internalId); 230 bool IsExistingResource(int64_t internalId);
231 231
232 void LookupTagValue(std::list<int64_t>& result, 232 void LookupIdentifier(std::list<int64_t>& result,
233 DicomTag tag, 233 const DicomTag& tag,
234 const std::string& value); 234 const std::string& value);
235 235
236 void LookupTagValue(std::list<int64_t>& result, 236 void LookupIdentifier(std::list<int64_t>& result,
237 const std::string& value); 237 const std::string& value);
238 238
239 void GetAllMetadata(std::map<MetadataType, std::string>& result, 239 void GetAllMetadata(std::map<MetadataType, std::string>& result,
240 int64_t id); 240 int64_t id);
241 }; 241 };
242 } 242 }