2014-09-13 02:06:13 +02:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
2014-12-17 06:38:14 +01:00
|
|
|
// Licensed under GPLv2 or any later version
|
2014-09-13 02:06:13 +02:00
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2015-06-21 15:58:59 +02:00
|
|
|
#include <string>
|
2014-09-13 02:06:13 +02:00
|
|
|
|
2015-06-21 15:58:59 +02:00
|
|
|
class QSettings;
|
2014-09-13 02:06:13 +02:00
|
|
|
|
|
|
|
class Config {
|
|
|
|
QSettings* qt_config;
|
|
|
|
std::string qt_config_loc;
|
|
|
|
|
2014-11-15 20:56:18 +01:00
|
|
|
void ReadValues();
|
|
|
|
void SaveValues();
|
2014-09-13 02:06:13 +02:00
|
|
|
public:
|
|
|
|
Config();
|
|
|
|
~Config();
|
|
|
|
|
|
|
|
void Reload();
|
|
|
|
void Save();
|
|
|
|
};
|