comparison OrthancServer/Sources/OrthancRestApi/OrthancRestApi.h @ 4936:8422e4f99a18 more-tags

Handling RequestedTags in ExpandResource -> read parent main dicom tags if required. Not yet getting missing tags from file. Integration tests ok
author Alain Mazy <am@osimis.io>
date Fri, 11 Mar 2022 17:38:16 +0100
parents 6eff25f70121
children f2dcdbe05884
comparison
equal deleted inserted replaced
4935:acd3f72e2a21 4936:8422e4f99a18
143 static void DocumentDicomFormat(RestApiGetCall& call, 143 static void DocumentDicomFormat(RestApiGetCall& call,
144 DicomToJsonFormat defaultFormat); 144 DicomToJsonFormat defaultFormat);
145 145
146 static void DocumentDicomFormat(RestApiPostCall& call, 146 static void DocumentDicomFormat(RestApiPostCall& call,
147 DicomToJsonFormat defaultFormat); 147 DicomToJsonFormat defaultFormat);
148
149 static void GetRequestedTags(std::set<DicomTag>& requestedTags,
150 const RestApiGetCall& call);
151
152 static void DocumentRequestedTags(RestApiGetCall& call);
148 }; 153 };
149 } 154 }