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.
32 lines
542 B
32 lines
542 B
6 months ago
|
#ifndef ASSISTANT_H
|
||
|
#define ASSISTANT_H
|
||
|
|
||
|
#include <QMainWindow>
|
||
|
|
||
|
QT_BEGIN_NAMESPACE
|
||
|
namespace Ui { class assistant; }
|
||
|
QT_END_NAMESPACE
|
||
|
|
||
|
class assistant : public QMainWindow
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
assistant(QWidget *parent = nullptr);
|
||
|
~assistant();
|
||
|
|
||
|
private slots:
|
||
|
void on_pushButton_clicked();
|
||
|
|
||
|
void on_pushButton_3_clicked();
|
||
|
|
||
|
void on_pushButton_2_clicked();
|
||
|
|
||
|
private:
|
||
|
Ui::assistant *ui;
|
||
|
signals:
|
||
|
void climate_ready(bool t);
|
||
|
void class_ready(bool t);
|
||
|
void alarm_ready(bool t);
|
||
|
};
|
||
|
#endif // ASSISTANT_H
|