15 lines
208 B
C++
15 lines
208 B
C++
#include "DialogMsg.h"
|
|
#include "ui_DialogMsg.h"
|
|
|
|
DialogMsg::DialogMsg(QWidget *parent) :
|
|
QWidget(parent),
|
|
ui(new Ui::DialogMsg)
|
|
{
|
|
ui->setupUi(this);
|
|
}
|
|
|
|
DialogMsg::~DialogMsg()
|
|
{
|
|
delete ui;
|
|
}
|