2015-07-26 21:39:49 +00:00
|
|
|
#include "TestDialog.h"
|
|
|
|
#include "ui_TestDialog.h"
|
2015-12-15 02:07:22 +00:00
|
|
|
|
2016-03-27 19:09:38 +00:00
|
|
|
TestDialog::TestDialog(QWidget *pParent)
|
|
|
|
: QDialog(pParent)
|
|
|
|
, ui(new Ui::TestDialog)
|
2015-07-26 21:39:49 +00:00
|
|
|
{
|
|
|
|
ui->setupUi(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
TestDialog::~TestDialog()
|
|
|
|
{
|
|
|
|
delete ui;
|
|
|
|
}
|