jce-manager/main/HelpBox/helpbox.cpp

15 lines
194 B
C++
Raw Normal View History

#include "helpbox.h"
#include "ui_helpbox.h"
helpBox::helpBox(QWidget *parent) :
QDialog(parent),
ui(new Ui::helpBox)
{
ui->setupUi(this);
}
helpBox::~helpBox()
{
delete ui;
}