1
0
Fork 0
mirror of https://github.com/eliboa/TegraRcmGUI.git synced 2025-02-19 15:05:38 +00:00
TegraRcmGUI/qtools.cpp

15 lines
187 B
C++
Raw Normal View History

2020-06-24 20:30:39 +02:00
#include "qtools.h"
#include "ui_qtools.h"
qTools::qTools(QWidget *parent) :
QWidget(parent),
ui(new Ui::qTools)
{
ui->setupUi(this);
}
qTools::~qTools()
{
delete ui;
}