10Duke Scale 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
8namespace tenduke { namespace http {
9
10
15{
16public:
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
HTTP-call which executes the request and returns HTTPResponse.
Definition HTTPCall.h:15
virtual std::unique_ptr< tenduke::http::HTTPResponse > execute()=0
Executes the call synchronously.
Root for classes, functions and globals of 10Duke C++ Client.
Definition BackendConfiguration.h:7