citra/src/citra_qt/config.h

24 lines
396 B
C
Raw Normal View History

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