mirror of
https://github.com/JasonYANG170/Health-Protection.git
synced 2024-11-23 20:26:34 +00:00
15 lines
194 B
C++
15 lines
194 B
C++
#include "dialog6.h"
|
|
#include "ui_dialog6.h"
|
|
|
|
Dialog6::Dialog6(QWidget *parent) :
|
|
QDialog(parent),
|
|
ui(new Ui::Dialog6)
|
|
{
|
|
ui->setupUi(this);
|
|
}
|
|
|
|
Dialog6::~Dialog6()
|
|
{
|
|
delete ui;
|
|
}
|