yuzu/src/citra_qt/config.h

24 lines
377 B
C
Raw Normal View History

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