mirror of
https://github.com/JasonYANG170/Health-Protection.git
synced 2024-11-23 20:26:34 +00:00
31 lines
375 B
C
31 lines
375 B
C
|
#ifndef DIALOG4_H
|
||
|
#define DIALOG4_H
|
||
|
|
||
|
#include <QDialog>
|
||
|
|
||
|
namespace Ui {
|
||
|
class Dialog4;
|
||
|
}
|
||
|
|
||
|
class Dialog4 : public QDialog
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit Dialog4(QWidget *parent = nullptr);
|
||
|
~Dialog4();
|
||
|
|
||
|
private slots:
|
||
|
|
||
|
|
||
|
void on_checkBox_clicked(bool checked);
|
||
|
|
||
|
void on_checkBox_2_clicked(bool checked);
|
||
|
|
||
|
private:
|
||
|
Ui::Dialog4 *ui;
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif // DIALOG4_H
|