comparison OrthancStone/Sources/Oracle/HttpCommand.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
89 } 89 }
90 90
91 public: 91 public:
92 HttpCommand(); 92 HttpCommand();
93 93
94 virtual Type GetType() const 94 virtual Type GetType() const ORTHANC_OVERRIDE
95 { 95 {
96 return Type_Http; 96 return Type_Http;
97 } 97 }
98 98
99 virtual IOracleCommand* Clone() const 99 virtual IOracleCommand* Clone() const ORTHANC_OVERRIDE
100 { 100 {
101 return new HttpCommand(*this); 101 return new HttpCommand(*this);
102 } 102 }
103 103
104 void SetMethod(Orthanc::HttpMethod method) 104 void SetMethod(Orthanc::HttpMethod method)