comparison Core/DicomNetworking/RemoteModalityParameters.h @ 3894:8f7ad4989fec transcoding

transcoding to uncompressed transfer syntaxes over DICOM protocol is implemented
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 07 May 2020 11:13:29 +0200
parents f6a73611ec5c
children
comparison
equal deleted inserted replaced
3893:7a5fa8f307e9 3894:8f7ad4989fec
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 }