added startPVAServer() and 4.3 versions

This commit is contained in:
Matej Sekoranja
2013-06-10 12:10:38 +02:00
parent 3fd682d412
commit 54383923af
6 changed files with 125 additions and 13 deletions

View File

@@ -80,6 +80,11 @@ string Properties::getProperty(const string &key, const string &defaultValue)
return defaultValue;
}
bool Properties::hasProperty(const string &key)
{
return (_properties.find(key) != _properties.end());
}
void Properties::load()
{
_properties.clear();
@@ -333,6 +338,11 @@ string SystemConfigurationImpl::getPropertyAsString(const string &name, const st
return _properties->getProperty(name,defaultValue);
}
bool SystemConfigurationImpl::hasProperty(const string &key)
{
return _properties->hasProperty(key);
}
ConfigurationProviderImpl::ConfigurationProviderImpl()
{