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
|
|
|
|
|
2016-03-02 12:49:30 +00:00
|
|
|
#include <memory>
|
2015-06-20 19:34:41 +00:00
|
|
|
#include <string>
|
2017-05-28 01:14:00 +00:00
|
|
|
|
|
|
|
class INIReader;
|
2014-09-13 00:06:13 +00:00
|
|
|
|
|
|
|
class Config {
|
2016-03-02 12:49:30 +00:00
|
|
|
std::unique_ptr<INIReader> sdl2_config;
|
2016-03-01 17:24:18 +00:00
|
|
|
std::string sdl2_config_loc;
|
2014-09-13 00:06:13 +00:00
|
|
|
|
2016-09-18 00:38:01 +00:00
|
|
|
bool LoadINI(const std::string& default_contents = "", bool retry = true);
|
2014-11-15 19:56:18 +00:00
|
|
|
void ReadValues();
|
2016-09-18 00:38:01 +00:00
|
|
|
|
2014-09-13 00:06:13 +00:00
|
|
|
public:
|
|
|
|
Config();
|
2017-05-28 01:14:00 +00:00
|
|
|
~Config();
|
2014-09-13 00:06:13 +00:00
|
|
|
|
|
|
|
void Reload();
|
|
|
|
};
|