QtHPConnect/hptoolbox.cpp
2019-02-10 15:32:15 +02:00

14 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;
}