suyu/src/yuzu/configuration/config.h

31 lines
633 B
C++
Raw Normal View History

// Copyright 2014 Citra Emulator Project
2014-12-17 02:38:14 -03:00
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#pragma once
2017-01-21 06:53:03 -03:00
#include <array>
#include <string>
#include <QVariant>
#include "core/settings.h"
2015-06-21 10:58:59 -03:00
class QSettings;
class Config {
QSettings* qt_config;
std::string qt_config_loc;
2014-11-15 16:56:18 -03:00
void ReadValues();
void SaveValues();
public:
Config();
~Config();
void Reload();
void Save();
2017-01-21 08:04:00 -03:00
2017-01-21 06:53:03 -03:00
static const std::array<int, Settings::NativeButton::NumButtons> default_buttons;
2017-01-21 08:04:00 -03:00
static const std::array<std::array<int, 5>, Settings::NativeAnalog::NumAnalogs> default_analogs;
};