mirror of
https://github.com/stenzek/duckstation.git
synced 2025-06-08 20:45:34 +00:00
23 lines
425 B
C++
23 lines
425 B
C++
#pragma once
|
|
#include "core/types.h"
|
|
#include <QtWidgets/QWidget>
|
|
|
|
#include "ui_biossettingswidget.h"
|
|
|
|
class QtHostInterface;
|
|
class SettingsDialog;
|
|
|
|
class BIOSSettingsWidget : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit BIOSSettingsWidget(QtHostInterface* host_interface, QWidget* parent, SettingsDialog* dialog);
|
|
~BIOSSettingsWidget();
|
|
|
|
private:
|
|
Ui::BIOSSettingsWidget m_ui;
|
|
|
|
QtHostInterface* m_host_interface;
|
|
};
|