comparison Core/RestApi/RestApiPostCall.h @ 1441:f3672356c121

refactoring: IHttpHandler and HttpToolbox
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 01 Jul 2015 10:38:39 +0200
parents 6e7e5ed91c2d
children 8dc80ba768aa
comparison
equal deleted inserted replaced
1440:3567503c00a7 1441:f3672356c121
44 public: 44 public:
45 typedef void (*Handler) (RestApiPostCall& call); 45 typedef void (*Handler) (RestApiPostCall& call);
46 46
47 RestApiPostCall(RestApiOutput& output, 47 RestApiPostCall(RestApiOutput& output,
48 RestApi& context, 48 RestApi& context,
49 const HttpHandler::Arguments& httpHeaders, 49 const IHttpHandler::Arguments& httpHeaders,
50 const HttpHandler::Arguments& uriComponents, 50 const IHttpHandler::Arguments& uriComponents,
51 const UriComponents& trailing, 51 const UriComponents& trailing,
52 const UriComponents& fullUri, 52 const UriComponents& fullUri,
53 const std::string& data) : 53 const std::string& data) :
54 RestApiCall(output, context, httpHeaders, uriComponents, trailing, fullUri), 54 RestApiCall(output, context, httpHeaders, uriComponents, trailing, fullUri),
55 data_(data) 55 data_(data)