Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
WeatherInfo.h
- Committer:
- takashikojo
- Date:
- 2015-07-05
- Revision:
- 2:76b812680942
- Parent:
- 1:8655f1720450
File content as of revision 2:76b812680942:
#ifndef WEATHERINFO_H #define WEATHERINFO_H enum WeatherInfoSource { WEATHER_HACKS } ; class WeatherInfo { public: WeatherInfo(enum WeatherInfoSource s) ; ~WeatherInfo(); void setBuff(char *buff, int size) ; bool getInfo(char *hiTemp, char *loTemp, char *prec) ; private: enum WeatherInfoSource source ; char *recvBuff ; int recvSize ; } ; #endif