annotate include/core/http.h @ 77:6f7385bd334c
*: update
formatted all source files, no more subclassing QThread... many other
changes :)
author |
Paper <mrpapersonic@gmail.com> |
date |
Fri, 06 Oct 2023 06:18:53 -0400 |
parents |
3364fadc8a36 |
children |
f5940a575d83 |
rev |
line source |
75
|
1 #ifndef __core__http_h
|
|
2 #define __core__http_h
|
|
3
|
77
|
4 #include <QByteArray>
|
75
|
5 #include <string>
|
|
6 #include <vector>
|
|
7
|
|
8 namespace HTTP {
|
|
9
|
77
|
10 QByteArray Get(std::string url, std::vector<std::string> headers = {});
|
|
11 QByteArray Post(std::string url, std::string data, std::vector<std::string> headers = {});
|
75
|
12
|
76
|
13 } // namespace HTTP
|
75
|
14
|
|
15 #endif // __core__http_h
|