lua fixes

This commit is contained in:
Eduardo Bart
2012-01-06 22:46:41 -02:00
parent 3c62ce97db
commit 5d0d1432ed
5 changed files with 18 additions and 35 deletions

View File

@@ -49,30 +49,11 @@ bool ConfigManager::save()
{
OTMLDocumentPtr doc = OTMLDocument::create();
for(auto it : m_confsMap) {
if(it.second == "")
continue;
OTMLNodePtr node = OTMLNode::create(it.first, it.second);
doc->addChild(node);
}
return doc->save(m_fileName);
}
bool ConfigManager::exists(const std::string& key)
{
return m_confsMap.find(key) != m_confsMap.end();
}
void ConfigManager::set(const std::string& key, const std::string& value)
{
m_confsMap[key] = value;
}
std::string ConfigManager::get(const std::string& key)
{
return m_confsMap[key];
}
void ConfigManager::remove(const std::string& key)
{
auto it = m_confsMap.find(key);
if(it != m_confsMap.end())
m_confsMap.erase(it);
}