comparison OrthancFramework/Sources/RestApi/RestApiCallDocumentation.h @ 4421:a7d72378e1cb

cont openapi
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 29 Dec 2020 15:22:00 +0100
parents a4518adede59
children d9473bd5ed43
comparison
equal deleted inserted replaced
4420:f95ad769e671 4421:a7d72378e1cb
200 const std::string& GetTag() const 200 const std::string& GetTag() const
201 { 201 {
202 return tag_; 202 return tag_;
203 } 203 }
204 204
205 void SetDeprecated() 205 RestApiCallDocumentation& SetDeprecated()
206 { 206 {
207 deprecated_ = true; 207 deprecated_ = true;
208 return *this;
208 } 209 }
209 210
210 bool IsDeprecated() const 211 bool IsDeprecated() const
211 { 212 {
212 return deprecated_; 213 return deprecated_;