mirror of
https://github.com/JasonYANG170/Health-Protection.git
synced 2024-11-23 20:26:34 +00:00
28 lines
352 B
C
28 lines
352 B
C
|
#ifndef DIALOG2_H
|
||
|
#define DIALOG2_H
|
||
|
|
||
|
#include <QDialog>
|
||
|
|
||
|
namespace Ui {
|
||
|
class Dialog2;
|
||
|
}
|
||
|
|
||
|
class Dialog2 : public QDialog
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit Dialog2(QWidget *parent = nullptr);
|
||
|
~Dialog2();
|
||
|
|
||
|
private slots:
|
||
|
void on_pushButton_clicked();
|
||
|
|
||
|
void on_pushButton_2_clicked();
|
||
|
|
||
|
private:
|
||
|
Ui::Dialog2 *ui;
|
||
|
};
|
||
|
|
||
|
#endif // DIALOG2_H
|