18 lines
251 B
C++
18 lines
251 B
C++
#include "Setting.h"
|
|
#include "ui_Setting.h"
|
|
|
|
Setting::Setting(QWidget *parent) :
|
|
QWidget(parent),
|
|
ui(new Ui::Setting)
|
|
{
|
|
ui->setupUi(this);
|
|
setWindowTitle(tr("Setting"));
|
|
|
|
|
|
}
|
|
|
|
Setting::~Setting()
|
|
{
|
|
delete ui;
|
|
}
|