pgLab/serverproperties.cpp

15 lines
245 B
C++
Raw Normal View History

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