2014-09-13 00:06:13 +00:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
2014-12-17 05:38:14 +00:00
|
|
|
// Licensed under GPLv2 or any later version
|
2014-09-13 00:06:13 +00:00
|
|
|
// 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;
|
|
|
|
|
2014-11-15 19:56:18 +00:00
|
|
|
void ReadValues();
|
|
|
|
void SaveValues();
|
2014-09-13 00:06:13 +00:00
|
|
|
public:
|
|
|
|
Config();
|
|
|
|
~Config();
|
|
|
|
|
|
|
|
void Reload();
|
|
|
|
void Save();
|
|
|
|
};
|