You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
385 B
26 lines
385 B
#ifndef climate_H
|
|
#define climate_H
|
|
#include <QMainWindow>
|
|
#include "weather.h"
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
namespace Ui { class climate; }
|
|
QT_END_NAMESPACE
|
|
|
|
class weather;
|
|
|
|
class climate : public QMainWindow
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
climate(QWidget *parent = nullptr);
|
|
~climate();
|
|
Ui::climate *ui;
|
|
private:
|
|
|
|
/*天气相关的类*/
|
|
weather *Weather;
|
|
};
|
|
#endif // climate_H
|