comparison Core/RestApi/RestApiDeleteCall.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 3232f1c995a5
comparison
equal deleted inserted replaced
1440:3567503c00a7 1441:f3672356c121
41 public: 41 public:
42 typedef void (*Handler) (RestApiDeleteCall& call); 42 typedef void (*Handler) (RestApiDeleteCall& call);
43 43
44 RestApiDeleteCall(RestApiOutput& output, 44 RestApiDeleteCall(RestApiOutput& output,
45 RestApi& context, 45 RestApi& context,
46 const HttpHandler::Arguments& httpHeaders, 46 const IHttpHandler::Arguments& httpHeaders,
47 const HttpHandler::Arguments& uriComponents, 47 const IHttpHandler::Arguments& uriComponents,
48 const UriComponents& trailing, 48 const UriComponents& trailing,
49 const UriComponents& fullUri) : 49 const UriComponents& fullUri) :
50 RestApiCall(output, context, httpHeaders, uriComponents, trailing, fullUri) 50 RestApiCall(output, context, httpHeaders, uriComponents, trailing, fullUri)
51 { 51 {
52 } 52 }