2022-05-23 17:29:45 +06:00
|
|
|
#ifndef QT_MCADEVICELIST_HPP
|
|
|
|
|
#define QT_MCADEVICELIST_HPP
|
|
|
|
|
|
|
|
|
|
#include <QDialog>
|
|
|
|
|
|
|
|
|
|
namespace Ui {
|
|
|
|
|
class MCADeviceList;
|
|
|
|
|
}
|
|
|
|
|
|
2022-11-19 08:49:04 -05:00
|
|
|
class MCADeviceList : public QDialog {
|
2022-05-23 17:29:45 +06:00
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
explicit MCADeviceList(QWidget *parent = nullptr);
|
|
|
|
|
~MCADeviceList();
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
Ui::MCADeviceList *ui;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif // QT_MCADEVICELIST_HPP
|