comparison OrthancServer/IDatabaseWrapper.h @ 3091:476cba12c2b0 db-changes

IDatabaseWrapper::GetChildrenMetadata()
author Sebastien Jodogne <s.jodogne@gmail.com>
date Sat, 05 Jan 2019 15:08:53 +0100
parents fb8ee0786b1e
children
comparison
equal deleted inserted replaced
3090:31244604f617 3091:476cba12c2b0
235 // It is guaranteed that the resources to be modified have no main 235 // It is guaranteed that the resources to be modified have no main
236 // DICOM tags, and no DICOM identifiers associated with 236 // DICOM tags, and no DICOM identifiers associated with
237 // them. However, some metadata might be already existing, and 237 // them. However, some metadata might be already existing, and
238 // have to be overwritten. 238 // have to be overwritten.
239 virtual void SetResourcesContent(const ResourcesContent& content) = 0; 239 virtual void SetResourcesContent(const ResourcesContent& content) = 0;
240
241 virtual void GetChildrenMetadata(std::list<std::string>& target,
242 int64_t resourceId,
243 MetadataType metadata) = 0;
240 }; 244 };
241 } 245 }