You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
432 B
C++
33 lines
432 B
C++
#ifndef CLIENT_H
|
|
#define CLIENT_H
|
|
|
|
#define CPPHTTPLIB_OPENSSL_SUPPORT
|
|
#include <./HTTPClient/lib/httplib.h>
|
|
#include <./HTTPClient/lib/json.hpp>
|
|
|
|
#include <codecvt>
|
|
#include <string>
|
|
#include <iostream>
|
|
|
|
|
|
using namespace std;
|
|
|
|
class HTTPClient
|
|
{
|
|
private:
|
|
char url;
|
|
char loginIndex;
|
|
char fanListIndex;
|
|
char headroomDetailIndex;
|
|
char gyroDetailIndex;
|
|
char featureHistoryIndex;
|
|
|
|
};
|
|
|
|
|
|
#endif // CLIENT_H
|
|
|
|
|
|
|
|
|