15 lines
229 B
C++
15 lines
229 B
C++
#include "dialogconfig.h"
|
|
#include "ui_dialogconfig.h"
|
|
|
|
DialogConfig::DialogConfig(QWidget *parent) :
|
|
QDialog(parent),
|
|
ui(new Ui::DialogConfig)
|
|
{
|
|
ui->setupUi(this);
|
|
}
|
|
|
|
DialogConfig::~DialogConfig()
|
|
{
|
|
delete ui;
|
|
}
|