comparison OrthancServer/Sources/OrthancRestApi/OrthancRestApi.h @ 4697:569d9ef165b1

Added "short", "simplify" and/or "full" options to control the format of DICOM tags wherever possible
author Sebastien Jodogne <s.jodogne@gmail.com>
date Fri, 18 Jun 2021 16:08:35 +0200
parents d9473bd5ed43
children f0038043fb97 7053502fbf97
comparison
equal deleted inserted replaced
4696:dd6274412ff4 4697:569d9ef165b1
142 const Json::Value& body) const; 142 const Json::Value& body) const;
143 143
144 static void DocumentSubmitGenericJob(RestApiPostCall& call); 144 static void DocumentSubmitGenericJob(RestApiPostCall& call);
145 145
146 static void DocumentSubmitCommandsJob(RestApiPostCall& call); 146 static void DocumentSubmitCommandsJob(RestApiPostCall& call);
147
148 static DicomToJsonFormat GetDicomFormat(const RestApiGetCall& call,
149 DicomToJsonFormat defaultFormat);
150
151 static DicomToJsonFormat GetDicomFormat(const Json::Value& body,
152 DicomToJsonFormat defaultFormat);
153
154 static void DocumentDicomFormat(RestApiGetCall& call,
155 DicomToJsonFormat defaultFormat);
156
157 static void DocumentDicomFormat(RestApiPostCall& call,
158 DicomToJsonFormat defaultFormat);
147 }; 159 };
148 } 160 }