comparison Core/DicomNetworking/RemoteModalityParameters.h @ 3920:82e88ff003d7 c-get

merge default -> c-get
author Alain Mazy <alain@mazy.be>
date Tue, 12 May 2020 14:58:24 +0200
parents 8f7ad4989fec
children
comparison
equal deleted inserted replaced
3918:dba48c162b7b 3920:82e88ff003d7
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 }