2014-09-12 19:06:13 -05:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
2014-12-16 23:38:14 -06:00
|
|
|
// Licensed under GPLv2 or any later version
|
2014-09-12 19:06:13 -05:00
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2016-03-02 06:49:30 -06:00
|
|
|
#include <memory>
|
2015-06-20 14:34:41 -05:00
|
|
|
#include <string>
|
2016-03-02 06:49:30 -06:00
|
|
|
#include <inih/cpp/INIReader.h>
|
2014-09-12 19:06:13 -05:00
|
|
|
|
|
|
|
class Config {
|
2016-03-02 06:49:30 -06:00
|
|
|
std::unique_ptr<INIReader> sdl2_config;
|
2016-03-01 11:24:18 -06:00
|
|
|
std::string sdl2_config_loc;
|
2014-09-12 19:06:13 -05:00
|
|
|
|
2016-09-17 19:38:01 -05:00
|
|
|
bool LoadINI(const std::string& default_contents = "", bool retry = true);
|
2014-11-15 13:56:18 -06:00
|
|
|
void ReadValues();
|
2016-09-17 19:38:01 -05:00
|
|
|
|
2014-09-12 19:06:13 -05:00
|
|
|
public:
|
|
|
|
Config();
|
|
|
|
|
|
|
|
void Reload();
|
|
|
|
};
|