2014-09-13 01:06:13 +01:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <QSettings>
|
|
|
|
|
|
|
|
#include "common/common_types.h"
|
|
|
|
|
|
|
|
class Config {
|
|
|
|
QSettings* qt_config;
|
|
|
|
std::string qt_config_loc;
|
|
|
|
|
|
|
|
void ReadControls();
|
|
|
|
void SaveControls();
|
2014-10-10 03:43:40 +01:00
|
|
|
|
|
|
|
void ReadData();
|
|
|
|
void SaveData();
|
2014-09-13 01:06:13 +01:00
|
|
|
public:
|
|
|
|
Config();
|
|
|
|
~Config();
|
|
|
|
|
|
|
|
void Reload();
|
|
|
|
void Save();
|
|
|
|
};
|