#include "Weather.h" #include #include "openWeatherMapApiKey.h" Weather::Weather(char *lat, char *lon){ sprintf(_url, WEATHER_URL, lat, lon, OPEN_WEATHER_MAP_API_KEY); } void Weather::update(){ }