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.

34 lines
415 B
C

2 years ago
#ifndef CLIENT_H
#define CLIENT_H
#define CPPHTTPLIB_OPENSSL_SUPPORT
2 years ago
#include <httplib.h>
#include <json.hpp>
2 years ago
#include <codecvt>
#include <string>
#include <iostream>
using namespace std;
class HTTPClient
{
private:
char url;
2 years ago
char header;
2 years ago
char loginIndex;
char fanListIndex;
char headroomDetailIndex;
char gyroDetailIndex;
char featureHistoryIndex;
};
#endif // CLIENT_H