comparison Core/HttpServer/IHttpHandler.h @ 1442:4ff8dd753d79

OrthancHttpHandler
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 01 Jul 2015 11:08:23 +0200
parents f3672356c121
children 8dc80ba768aa
comparison
equal deleted inserted replaced
1441:f3672356c121 1442:4ff8dd753d79
54 virtual bool Handle(HttpOutput& output, 54 virtual bool Handle(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& getArguments, 58 const GetArguments& getArguments,
59 const std::string& postData) = 0; 59 const std::string& body) = 0;
60 }; 60 };
61 } 61 }