mirror of
https://github.com/Fishwaldo/qt-openzwave.git
synced 2025-07-23 05:28:27 +00:00
more delegates - Start work on BitSet
This commit is contained in:
parent
d8c375c8ca
commit
879d86206c
9 changed files with 163 additions and 3 deletions
14
simpleclient/bitsetwidget.cpp
Normal file
14
simpleclient/bitsetwidget.cpp
Normal file
|
@ -0,0 +1,14 @@
|
|||
#include "bitsetwidget.h"
|
||||
#include "ui_bitsetwidget.h"
|
||||
|
||||
BitSetWidget::BitSetWidget(QWidget *parent) :
|
||||
QFrame(parent),
|
||||
ui(new Ui::BitSetWidget)
|
||||
{
|
||||
ui->setupUi(this);
|
||||
}
|
||||
|
||||
BitSetWidget::~BitSetWidget()
|
||||
{
|
||||
delete ui;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue