15 lines
245 B
C++
15 lines
245 B
C++
|
|
#include "serverproperties.h"
|
||
|
|
#include "ui_serverproperties.h"
|
||
|
|
|
||
|
|
ServerProperties::ServerProperties(QWidget *parent) :
|
||
|
|
QDialog(parent),
|
||
|
|
ui(new Ui::ServerProperties)
|
||
|
|
{
|
||
|
|
ui->setupUi(this);
|
||
|
|
}
|
||
|
|
|
||
|
|
ServerProperties::~ServerProperties()
|
||
|
|
{
|
||
|
|
delete ui;
|
||
|
|
}
|