comparison OrthancStone/Sources/Oracle/OrthancRestApiCommand.h @ 1571:85e117739eca

cppcheck
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 21 Sep 2020 17:46:39 +0200
parents 244ad1e4e76a
children 4fb8fdf03314
comparison
equal deleted inserted replaced
1570:9a04f42098a3 1571:85e117739eca
87 } 87 }
88 88
89 public: 89 public:
90 OrthancRestApiCommand(); 90 OrthancRestApiCommand();
91 91
92 virtual Type GetType() const 92 virtual Type GetType() const ORTHANC_OVERRIDE
93 { 93 {
94 return Type_OrthancRestApi; 94 return Type_OrthancRestApi;
95 } 95 }
96 96
97 virtual IOracleCommand* Clone() const 97 virtual IOracleCommand* Clone() const ORTHANC_OVERRIDE
98 { 98 {
99 return new OrthancRestApiCommand(*this); 99 return new OrthancRestApiCommand(*this);
100 } 100 }
101 101
102 void SetMethod(Orthanc::HttpMethod method) 102 void SetMethod(Orthanc::HttpMethod method)