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