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