QtHPConnect/source/hptoolbox.cpp
2020-11-01 17:49:00 +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;
}