[Old map downloader] Add method for clear settings.ini

This commit is contained in:
Sergey Yershov 2016-01-21 17:05:18 +03:00
parent a19cca6315
commit 60b16b8067
2 changed files with 13 additions and 0 deletions

View file

@ -83,6 +83,13 @@ namespace Settings
return inst;
}
void StringStorage::Clear()
{
lock_guard<mutex> guard(m_mutex);
m_values.clear();
Save();
}
bool StringStorage::GetValue(string const & key, string & outValue) const
{
lock_guard<mutex> guard(m_mutex);

View file

@ -22,6 +22,7 @@ namespace Settings
public:
static StringStorage & Instance();
void Clear();
bool GetValue(string const & key, string & outValue) const;
void SetValue(string const & key, string && value);
void DeleteKeyAndValue(string const & key);
@ -46,6 +47,11 @@ namespace Settings
StringStorage::Instance().DeleteKeyAndValue(key);
}
inline void Clear()
{
StringStorage::Instance().Clear();
}
enum Units { Metric = 0, Foot };
/// Use this function for running some stuff once according to date.