15 lines
243 B
C++
15 lines
243 B
C++
#include "relayscrollbox.h"
|
|
#include "ui_relayscrollbox.h"
|
|
|
|
RelayScrollBox::RelayScrollBox(QWidget *parent) :
|
|
QWidget(parent),
|
|
ui(new Ui::RelayScrollBox)
|
|
{
|
|
ui->setupUi(this);
|
|
}
|
|
|
|
RelayScrollBox::~RelayScrollBox()
|
|
{
|
|
delete ui;
|
|
}
|