CCIMXDesktop
 
Loading...
Searching...
No Matches
WeatherDailyCard.h
1#ifndef WEATHERDAILYCARD_H
2#define WEATHERDAILYCARD_H
3#include "AppWeatherRequest.h"
4#include <QWidget>
5namespace Ui {
7}
8
13class WeatherDailyCard : public QWidget {
14 Q_OBJECT
15
16public:
21 explicit WeatherDailyCard(QWidget* parent = nullptr);
22
30
31private:
32 void iconPolicy(const QString& str);
33 Ui::WeatherDailyCard* ui;
34};
35
36#endif // WEATHERDAILYCARD_H
The WeatherDailyCard class provides the daily weather card.
Definition WeatherDailyCard.h:13
void bind_daily_info(const AppWeatherResult::DailyWeather &weather)
bind_daily_info
Definition WeatherDailyCard.cpp:12
The DailyWeather struct provides the daily weather details. The JSON strings are expected to serializ...
Definition AppWeatherRequest.h:33