citra/src/citra_qt/config.h
2014-12-20 21:20:24 -08:00

23 lines
396 B
C++

// Copyright 2014 Citra Emulator Project
// 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;
void ReadValues();
void SaveValues();
public:
Config();
~Config();
void Reload();
void Save();
};