mirror of
https://github.com/eliboa/TegraRcmGUI.git
synced 2024-11-25 03:32:05 +00:00
15 lines
187 B
C++
15 lines
187 B
C++
|
#include "qtools.h"
|
||
|
#include "ui_qtools.h"
|
||
|
|
||
|
qTools::qTools(QWidget *parent) :
|
||
|
QWidget(parent),
|
||
|
ui(new Ui::qTools)
|
||
|
{
|
||
|
ui->setupUi(this);
|
||
|
}
|
||
|
|
||
|
qTools::~qTools()
|
||
|
{
|
||
|
delete ui;
|
||
|
}
|