blob: 194e736257d71a7f56231d364d17c3ef7b656e3c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#pragma once
#include <string>
namespace Settings {
void Load();
void Save();
std::string Read(const std::string &key, const std::string &defaultValue);
void Write(const std::string &key, const std::string &value);
}
|