aboutsummaryrefslogtreecommitdiff
path: root/client/dialog.cpp
blob: 58c3e725e3b505e6b5166ec0fd69935db024a74f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include "dialog.h"
#include "ui_dialog.h"

Dialog::Dialog(QWidget *parent) :
    QDialog(parent),
    ui(new Ui::Dialog)
{
    ui->setupUi(this);
}

Dialog::~Dialog()
{
    delete ui;
}