comparison OrthancServer/Sources/ServerContext.h @ 4935:acd3f72e2a21 more-tags

split ExpandResource in 2: read from DB and serialize to json. This will allow us to merge requested tags from both the DB and the file system
author Alain Mazy <am@osimis.io>
date Thu, 10 Mar 2022 19:00:43 +0100
parents 309fb4f02704
children 8422e4f99a18
comparison
equal deleted inserted replaced
4934:94a7b681b340 4935:acd3f72e2a21
537 void SetAcceptedTransferSyntaxes(const std::set<DicomTransferSyntax>& syntaxes); 537 void SetAcceptedTransferSyntaxes(const std::set<DicomTransferSyntax>& syntaxes);
538 538
539 bool IsUnknownSopClassAccepted(); 539 bool IsUnknownSopClassAccepted();
540 540
541 void SetUnknownSopClassAccepted(bool accepted); 541 void SetUnknownSopClassAccepted(bool accepted);
542
543 bool ExpandResource(Json::Value& target,
544 const std::string& publicId,
545 ResourceType level,
546 DicomToJsonFormat format);
547
542 }; 548 };
543 } 549 }