Initial commit. Contains a simple query tool.
This commit is contained in:
commit
edc6df25da
19 changed files with 1245 additions and 0 deletions
14
serverproperties.cpp
Normal file
14
serverproperties.cpp
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
#include "serverproperties.h"
|
||||
#include "ui_serverproperties.h"
|
||||
|
||||
ServerProperties::ServerProperties(QWidget *parent) :
|
||||
QDialog(parent),
|
||||
ui(new Ui::ServerProperties)
|
||||
{
|
||||
ui->setupUi(this);
|
||||
}
|
||||
|
||||
ServerProperties::~ServerProperties()
|
||||
{
|
||||
delete ui;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue