mirror of
https://github.com/eliboa/TegraRcmGUI.git
synced 2024-11-24 19:22:04 +00:00
14 lines
208 B
C++
14 lines
208 B
C++
#include "um_dialog.h"
|
|
#include "ui_um_dialog.h"
|
|
|
|
UM_Dialog::UM_Dialog(QWidget *parent) :
|
|
QWidget(parent),
|
|
ui(new Ui::UM_Dialog)
|
|
{
|
|
ui->setupUi(this);
|
|
}
|
|
|
|
UM_Dialog::~UM_Dialog()
|
|
{
|
|
delete ui;
|
|
}
|