comparison OrthancServer/DatabaseWrapper.h @ 1006:649d47854314 lua-scripting

proper handling of metadata in Store
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 08 Jul 2014 15:11:00 +0200
parents 1cd3ec544039
children 1ea4094d077c
comparison
equal deleted inserted replaced
1005:84b6d7bca6db 1006:649d47854314
233 DicomTag tag, 233 DicomTag tag,
234 const std::string& value); 234 const std::string& value);
235 235
236 void LookupTagValue(std::list<int64_t>& result, 236 void LookupTagValue(std::list<int64_t>& result,
237 const std::string& value); 237 const std::string& value);
238
239 void GetAllMetadata(std::map<MetadataType, std::string>& result,
240 int64_t id);
238 }; 241 };
239 } 242 }