config.h 377 B

1234567891011121314151617181920212223
  1. // Copyright 2014 Citra Emulator Project
  2. // Licensed under GPLv2 or any later version
  3. // Refer to the license.txt file included.
  4. #pragma once
  5. #include <string>
  6. class QSettings;
  7. class Config {
  8. QSettings* qt_config;
  9. std::string qt_config_loc;
  10. void ReadValues();
  11. void SaveValues();
  12. public:
  13. Config();
  14. ~Config();
  15. void Reload();
  16. void Save();
  17. };