mirror of
https://github.com/eliboa/TegraRcmGUI.git
synced 2024-11-08 11:51:45 +00:00
16 lines
228 B
C++
16 lines
228 B
C++
|
#include "tegrarcmgui.h"
|
||
|
#include "ui_tegrarcmgui.h"
|
||
|
|
||
|
TegraRcmGUI::TegraRcmGUI(QWidget *parent)
|
||
|
: QMainWindow(parent)
|
||
|
, ui(new Ui::TegraRcmGUI)
|
||
|
{
|
||
|
ui->setupUi(this);
|
||
|
}
|
||
|
|
||
|
TegraRcmGUI::~TegraRcmGUI()
|
||
|
{
|
||
|
delete ui;
|
||
|
}
|
||
|
|