13 lines
198 B
C++
13 lines
198 B
C++
#ifndef _HTTP_CONNECTOR_H_
|
|
#define _HTTP_CONNECTOR_H_
|
|
|
|
#include <iostream>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <curl/curl.h>
|
|
#include <nlohmann/json.hpp>
|
|
|
|
std::string get_sid();
|
|
#endif
|
|
|