This repository has been archived on 2021-11-25. You can view files and clone it, but cannot push or open issues/pull-requests.
UAPI/main.cpp

15 lines
277 B
C++

#include "Weather.h"
#include <iostream>
using namespace std;
int main()
{
cout<<"Program Start!"<<endl;
Weather w=Weather::GetWeather("%E5%A4%A9%E6%B4%A5");
cout<<"Weather Ready Status: "<<w.isReady()<<endl;
cout<<"Program Finished."<<endl;
return 0;
}