mirror of
https://github.com/Indy970/QtHPConnect
synced 2024-11-15 19:48:02 +01:00
15 lines
209 B
C++
15 lines
209 B
C++
|
#include "hptoolbox.h"
|
||
|
#include "ui_hptoolbox.h"
|
||
|
|
||
|
hpToolBox::hpToolBox(QWidget *parent) :
|
||
|
QToolBox(parent),
|
||
|
ui(new Ui::hpToolBox)
|
||
|
{
|
||
|
ui->setupUi(this);
|
||
|
}
|
||
|
|
||
|
hpToolBox::~hpToolBox()
|
||
|
{
|
||
|
delete ui;
|
||
|
}
|