Files
86Box/src/qt/qt_mcadevicelist.hpp
2022-11-19 11:53:07 -05:00

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