]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - apps/thermostat-demo.git/blob - forecastdata.h
mainwindow: update environment variable http_proxy to qt_http_proxy
[apps/thermostat-demo.git] / forecastdata.h
1 #ifndef FORECASTDATA_H
2 #define FORECASTDATA_H
4 #include <QString>
6 class ForecastData
7 {
8 public:
9     ForecastData();
11     void setDay(QString day);
12     QString day();
14     void setHighTemp(int tempHigh);
15     int highTemp();
17     void setLowTemp(int lowTemp);
18     int lowTemp();
20     void setIcon(QString icon);
21     QString icon();
23 private:
24     QString m_day;
25     int m_tempHigh;
26     int m_tempLow;
27     QString m_icon;
28 };
30 #endif // FORECASTDATA_H