10Duke Enterprise C++ Client
Loading...
Searching...
No Matches
HTTPCall.h
1
#ifndef TENDUKE_HTTP_HTTPCALL_H
2
#define TENDUKE_HTTP_HTTPCALL_H
3
4
#include "./HTTPResponse.h"
5
6
#include <memory>
7
8
namespace
tenduke
{
namespace
http {
9
10
14
class
HTTPCall
15
{
16
public
:
17
virtual
~HTTPCall
() =
default
;
18
33
virtual
std::unique_ptr<tenduke::http::HTTPResponse>
execute
() = 0;
34
};
35
36
37
}}
38
39
#endif
// TENDUKE_HTTP_HTTPCALL_H
tenduke::http::HTTPCall
HTTP-call which executes the request and returns HTTPResponse.
Definition
HTTPCall.h:15
tenduke::http::HTTPCall::execute
virtual std::unique_ptr< tenduke::http::HTTPResponse > execute()=0
Executes the call synchronously.
tenduke
Root for classes, functions and globals of 10Duke C++ Client.
Definition
APIRequest.h:4
core
core
src
http
HTTPCall.h
Generated by
1.9.8