QtHPConnect/hptoolbox.cpp

15 lines
209 B
C++
Raw Normal View History

2019-02-10 14:32:15 +01:00
#include "hptoolbox.h"
#include "ui_hptoolbox.h"
hpToolBox::hpToolBox(QWidget *parent) :
QToolBox(parent),
ui(new Ui::hpToolBox)
{
ui->setupUi(this);
}
hpToolBox::~hpToolBox()
{
delete ui;
}