comparison OrthancServer/Sources/EmbeddedResourceHttpHandler.h @ 4335:82652c5fc04f

cppcheck
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 01 Dec 2020 20:31:04 +0100
parents a01b1c9cbef4
children d9473bd5ed43
comparison
equal deleted inserted replaced
4334:b2366bc023f8 4335:82652c5fc04f
55 RequestOrigin origin, 55 RequestOrigin origin,
56 const char* remoteIp, 56 const char* remoteIp,
57 const char* username, 57 const char* username,
58 HttpMethod method, 58 HttpMethod method,
59 const UriComponents& uri, 59 const UriComponents& uri,
60 const HttpToolbox::Arguments& headers) 60 const HttpToolbox::Arguments& headers) ORTHANC_OVERRIDE
61 { 61 {
62 return false; 62 return false;
63 } 63 }
64 64
65 virtual bool Handle(HttpOutput& output, 65 virtual bool Handle(HttpOutput& output,
69 HttpMethod method, 69 HttpMethod method,
70 const UriComponents& uri, 70 const UriComponents& uri,
71 const HttpToolbox::Arguments& headers, 71 const HttpToolbox::Arguments& headers,
72 const HttpToolbox::GetArguments& arguments, 72 const HttpToolbox::GetArguments& arguments,
73 const void* /*bodyData*/, 73 const void* /*bodyData*/,
74 size_t /*bodySize*/); 74 size_t /*bodySize*/) ORTHANC_OVERRIDE;
75 }; 75 };
76 } 76 }