comparison Core/RestApi/RestApi.h @ 1363:feaf2840917c

Plugins now receive duplicated GET arguments in their REST callbacks
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 20 May 2015 15:21:26 +0200
parents 6e7e5ed91c2d
children f3672356c121
comparison
equal deleted inserted replaced
1362:bf6db7d2f8b1 1363:feaf2840917c
48 48
49 virtual bool Handle(HttpOutput& output, 49 virtual bool Handle(HttpOutput& output,
50 HttpMethod method, 50 HttpMethod method,
51 const UriComponents& uri, 51 const UriComponents& uri,
52 const Arguments& headers, 52 const Arguments& headers,
53 const Arguments& getArguments, 53 const GetArguments& getArguments,
54 const std::string& postData); 54 const std::string& postData);
55 55
56 void Register(const std::string& path, 56 void Register(const std::string& path,
57 RestApiGetCall::Handler handler); 57 RestApiGetCall::Handler handler);
58 58