summaryrefslogtreecommitdiffstats
path: root/lib/Utils/Settings.h
blob: ec30a27ae6ded619dce7b1ef973614ecf6b78700 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef SETTINGSFUNC_H_
#define SETTINGSFUNC_H_

#include "Settings.h"
#include <string>
#include <map>

typedef std::map<std::string, std::string> map_settings_t;

void load_settings(const std::string& path, map_settings_t& settings);
void save_settings(const std::string& path, const map_settings_t& settings);

#endif /* SETTINGSFUNC_H_ */