forked from blue/squawk
14 lines
259 B
C++
14 lines
259 B
C++
|
/*
|
||
|
* Created by victoria on 2021-05-12.
|
||
|
*/
|
||
|
|
||
|
#include "omemodevices.h"
|
||
|
#include "ui_omemodevices.h"
|
||
|
|
||
|
OMEMODevices::OMEMODevices(QWidget *parent)
|
||
|
: QDialog(parent), m_ui(new Ui::OMEMODevices()) {
|
||
|
m_ui->setupUi(this);
|
||
|
}
|
||
|
|
||
|
OMEMODevices::~OMEMODevices() {}
|