Mercurial > hg > orthanc
comparison Core/DicomNetworking/RemoteModalityParameters.h @ 3896:210af28c4087 transcoding
merge
author | Alain Mazy <alain@mazy.be> |
---|---|
date | Thu, 07 May 2020 11:32:15 +0200 |
parents | 8f7ad4989fec |
children |
comparison
equal
deleted
inserted
replaced
3895:37cf1889667a | 3896:210af28c4087 |
---|---|
53 bool allowFind_; | 53 bool allowFind_; |
54 bool allowMove_; | 54 bool allowMove_; |
55 bool allowGet_; | 55 bool allowGet_; |
56 bool allowNAction_; | 56 bool allowNAction_; |
57 bool allowNEventReport_; | 57 bool allowNEventReport_; |
58 bool allowTranscoding_; | |
58 | 59 |
59 void Clear(); | 60 void Clear(); |
60 | 61 |
61 void UnserializeArray(const Json::Value& serialized); | 62 void UnserializeArray(const Json::Value& serialized); |
62 | 63 |
129 | 130 |
130 bool IsAdvancedFormatNeeded() const; | 131 bool IsAdvancedFormatNeeded() const; |
131 | 132 |
132 void Serialize(Json::Value& target, | 133 void Serialize(Json::Value& target, |
133 bool forceAdvancedFormat) const; | 134 bool forceAdvancedFormat) const; |
135 | |
136 bool IsTranscodingAllowed() const | |
137 { | |
138 return allowTranscoding_; | |
139 } | |
140 | |
141 void SetTranscodingAllowed(bool allowed) | |
142 { | |
143 allowTranscoding_ = allowed; | |
144 } | |
134 }; | 145 }; |
135 } | 146 } |