Files
UvosSmartHomeInterface/relayscrollbox.cpp
2018-11-02 22:08:49 +01:00

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;
}