LIPH's C++ Codes
requests.h
Go to the documentation of this file.
1#ifndef LIPH_NET_REQUESTS_H_
2#define LIPH_NET_REQUESTS_H_
3
4#include <string>
5
6namespace liph {
7namespace requests {
8
9class response {};
10
11response request(const std::string& method, const std::string& url);
12response get(const std::string& url);
13response post(const std::string& url);
14
15} // namespace requests
16} // namespace liph
17
18#endif // LIPH_NET_REQUESTS_H_
Definition: requests.h:9
response get(const std::string &url)
Definition: requests.cpp:18
response post(const std::string &url)
Definition: requests.cpp:27
response request(const std::string &method, const std::string &url)
Definition: requests.cpp:9
Definition: algorithm.h:10