2021-05-12 07:05:17 +00:00
|
|
|
/*
|
|
|
|
* Created by victoria on 2021-05-12.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "omemodevices.h"
|
|
|
|
#include "ui_omemodevices.h"
|
|
|
|
|
|
|
|
OMEMODevices::OMEMODevices(QWidget *parent)
|
2021-05-15 09:28:43 +00:00
|
|
|
: QDialog(parent), m_ui(new Ui::OMEMODevices()) {
|
|
|
|
m_ui->setupUi(this);
|
2021-05-12 07:05:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
OMEMODevices::~OMEMODevices() {}
|