1
0
Fork 0
mirror of https://github.com/eliboa/TegraRcmGUI.git synced 2024-11-08 11:51:45 +00:00
TegraRcmGUI/tegrarcmgui.cpp

16 lines
228 B
C++
Raw Normal View History

2020-06-24 19:30:39 +01:00
#include "tegrarcmgui.h"
#include "ui_tegrarcmgui.h"
TegraRcmGUI::TegraRcmGUI(QWidget *parent)
: QMainWindow(parent)
, ui(new Ui::TegraRcmGUI)
{
ui->setupUi(this);
}
TegraRcmGUI::~TegraRcmGUI()
{
delete ui;
}