Skip to content
Snippets Groups Projects
Commit 62f34c8e authored by Yuri Kunde Schlesner's avatar Yuri Kunde Schlesner
Browse files

Citra: Convert include into forward declaration

parent e91f2b76
No related branches found
No related tags found
No related merge requests found
......@@ -5,11 +5,11 @@
#include <memory>
#include <SDL.h>
#include <inih/cpp/INIReader.h>
#include "citra/config.h"
#include "citra/default_ini.h"
#include "common/file_util.h"
#include "common/logging/log.h"
#include "common/param_package.h"
#include "config.h"
#include "core/settings.h"
#include "input_common/main.h"
......@@ -21,6 +21,8 @@ Config::Config() {
Reload();
}
Config::~Config() = default;
bool Config::LoadINI(const std::string& default_contents, bool retry) {
const char* location = this->sdl2_config_loc.c_str();
if (sdl2_config->ParseError() < 0) {
......
......@@ -6,7 +6,8 @@
#include <memory>
#include <string>
#include <inih/cpp/INIReader.h>
class INIReader;
class Config {
std::unique_ptr<INIReader> sdl2_config;
......@@ -17,6 +18,7 @@ class Config {
public:
Config();
~Config();
void Reload();
};
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment