mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-23 02:45:45 +00:00
configuration_shared: Create Tab base class
This commit is contained in:
parent
60773194a0
commit
e5b981e1e4
2 changed files with 22 additions and 0 deletions
|
@ -4,10 +4,19 @@
|
|||
#include <QCheckBox>
|
||||
#include <QObject>
|
||||
#include <QString>
|
||||
#include <QWidget>
|
||||
#include "common/settings.h"
|
||||
#include "yuzu/configuration/configuration_shared.h"
|
||||
#include "yuzu/configuration/configure_per_game.h"
|
||||
|
||||
namespace ConfigurationShared {
|
||||
|
||||
Tab::Tab(QWidget* parent) : QWidget(parent) {}
|
||||
|
||||
Tab::~Tab() {}
|
||||
|
||||
} // namespace ConfigurationShared
|
||||
|
||||
void ConfigurationShared::ApplyPerGameSetting(Settings::SwitchableSetting<bool>* setting,
|
||||
const QCheckBox* checkbox,
|
||||
const CheckState& tracker) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue