mirror of
https://github.com/Fishwaldo/qt-openzwave.git
synced 2025-07-13 16:48:25 +00:00
14 lines
228 B
C++
14 lines
228 B
C++
#include "bitsetwidget.h"
|
|
#include "ui_bitsetwidget.h"
|
|
|
|
BitSetWidget::BitSetWidget(QWidget *parent) :
|
|
QFrame(parent),
|
|
ui(new Ui::BitSetWidget)
|
|
{
|
|
ui->setupUi(this);
|
|
}
|
|
|
|
BitSetWidget::~BitSetWidget()
|
|
{
|
|
delete ui;
|
|
}
|