comparison OrthancServer/IDatabaseWrapper.h @ 3089:fb8ee0786b1e db-changes

new extension for database plugin SDK: setResourcesContent
author Sebastien Jodogne <s.jodogne@gmail.com>
date Sat, 05 Jan 2019 11:39:31 +0100
parents 683d572424b6
children 476cba12c2b0
comparison
equal deleted inserted replaced
3088:d498ece73562 3089:fb8ee0786b1e
230 const std::string& patient, 230 const std::string& patient,
231 const std::string& study, 231 const std::string& study,
232 const std::string& series, 232 const std::string& series,
233 const std::string& instance) = 0; 233 const std::string& instance) = 0;
234 234
235 // It is guaranteed that the resources to be modified have no main
236 // DICOM tags, and no DICOM identifiers associated with
237 // them. However, some metadata might be already existing, and
238 // have to be overwritten.
235 virtual void SetResourcesContent(const ResourcesContent& content) = 0; 239 virtual void SetResourcesContent(const ResourcesContent& content) = 0;
236 }; 240 };
237 } 241 }