blob: 194e736257d71a7f56231d364d17c3ef7b656e3c (
plain) (
tree)
|
|
#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);
}
|