mirror of
https://github.com/86Box/86Box.git
synced 2026-02-24 20:35:32 -07:00
22 lines
328 B
C++
22 lines
328 B
C++
#ifndef QT_MCADEVICELIST_HPP
|
|
#define QT_MCADEVICELIST_HPP
|
|
|
|
#include <QDialog>
|
|
|
|
namespace Ui {
|
|
class MCADeviceList;
|
|
}
|
|
|
|
class MCADeviceList : public QDialog {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit MCADeviceList(QWidget *parent = nullptr);
|
|
~MCADeviceList();
|
|
|
|
private:
|
|
Ui::MCADeviceList *ui;
|
|
};
|
|
|
|
#endif // QT_MCADEVICELIST_HPP
|