comparison OrthancFramework/Sources/HttpServer/FilesystemHttpHandler.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
46 RequestOrigin origin, 46 RequestOrigin origin,
47 const char* remoteIp, 47 const char* remoteIp,
48 const char* username, 48 const char* username,
49 HttpMethod method, 49 HttpMethod method,
50 const UriComponents& uri, 50 const UriComponents& uri,
51 const HttpToolbox::Arguments& headers) 51 const HttpToolbox::Arguments& headers) ORTHANC_OVERRIDE
52 { 52 {
53 return false; 53 return false;
54 } 54 }
55 55
56 virtual bool Handle(HttpOutput& output, 56 virtual bool Handle(HttpOutput& output,
60 HttpMethod method, 60 HttpMethod method,
61 const UriComponents& uri, 61 const UriComponents& uri,
62 const HttpToolbox::Arguments& headers, 62 const HttpToolbox::Arguments& headers,
63 const HttpToolbox::GetArguments& arguments, 63 const HttpToolbox::GetArguments& arguments,
64 const void* /*bodyData*/, 64 const void* /*bodyData*/,
65 size_t /*bodySize*/); 65 size_t /*bodySize*/) ORTHANC_OVERRIDE;
66 66
67 bool IsListDirectoryContent() const 67 bool IsListDirectoryContent() const
68 { 68 {
69 return listDirectoryContent_; 69 return listDirectoryContent_;
70 } 70 }