pgLab/serverproperties.cpp
2016-12-26 16:06:55 +01:00

14 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;
}