comparison Core/HttpServer/EmbeddedResourceHttpHandler.h @ 1446:8dc80ba768aa

refactoring: IHttpHandler does not use std::string to hold the request body
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 01 Jul 2015 13:16:12 +0200
parents f3672356c121
children 3232f1c995a5
comparison
equal deleted inserted replaced
1445:d26c8a93d05a 1446:8dc80ba768aa
54 HttpOutput& output, 54 HttpOutput& output,
55 HttpMethod method, 55 HttpMethod method,
56 const UriComponents& uri, 56 const UriComponents& uri,
57 const Arguments& headers, 57 const Arguments& headers,
58 const GetArguments& arguments, 58 const GetArguments& arguments,
59 const std::string&); 59 const char* /*bodyData*/,
60 size_t /*bodySize*/);
60 }; 61 };
61 } 62 }