#include "../include/API.h" API::API(String user, String password, String host, bool https = true){ this->user = user; this->password = password; this->serveurHost = host; this->https = https; this->token = ""; } JSONVar* API::connect(){ JSONVar* sortie = new JSONVar(); //TODO: implement connect methods return sortie; }