#include "common/SystemProperties.hpp" #include using namespace std; namespace { Properties properties; } void SystemProperties::init(const string& file) { //static string name = "biz.meansofproduction.dnseppus"; properties.load(file); } string SystemProperties::getProperty(const string &prop) { return properties.getProperty(prop); } string SystemProperties::getProperty(const string& prop, const string& def) { return properties.getProperty(prop, def); } vector > SystemProperties::getProperties(const string& prefix) { return properties.getProperties(prefix); } bool SystemProperties::getBooleanProperty(const string& prop, bool def) { return properties.getBooleanProperty(prop, def); }