blob: 58d724492a24f7ac7b7b2588f13106040fbebde1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#include "profileDialog.h"
#include "ui_profileDialog.h"
profileDialog::profileDialog(QWidget *parent) :
QDialog(parent),
ui(new Ui::profileDialog)
{
ui->setupUi(this);
}
profileDialog::~profileDialog()
{
delete ui;
}
|