comparison OrthancServer/DatabaseWrapper.h @ 1746:d143db00a794 db-changes

SetOfResources
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 26 Oct 2015 16:04:58 +0100
parents 38dda23c7d7d
children 55d52567bebb
comparison
equal deleted inserted replaced
1745:38dda23c7d7d 1746:d143db00a794
313 virtual bool IsExistingResource(int64_t internalId) 313 virtual bool IsExistingResource(int64_t internalId)
314 { 314 {
315 return base_.IsExistingResource(internalId); 315 return base_.IsExistingResource(internalId);
316 } 316 }
317 317
318 virtual void LookupIdentifierExact(std::list<int64_t>& target, 318 virtual void LookupIdentifier(std::list<int64_t>& result,
319 ResourceType level, 319 ResourceType level,
320 const DicomTag& tag, 320 const DicomTag& tag,
321 const std::string& value) 321 IdentifierConstraintType type,
322 { 322 const std::string& value)
323 base_.LookupIdentifierExact(target, level, tag, value); 323 {
324 } 324 base_.LookupIdentifier(result, level, tag, type, value);
325
326 virtual void LookupIdentifier(const LookupIdentifierQuery& query)
327 {
328 base_.LookupIdentifier(query);
329 } 325 }
330 326
331 virtual void GetAllMetadata(std::map<MetadataType, std::string>& target, 327 virtual void GetAllMetadata(std::map<MetadataType, std::string>& target,
332 int64_t id); 328 int64_t id);
333 329