/* * Configurable.cxx * * Created on: Oct 25, 2012 * Author: dklein */ #include "Configurable.h" namespace Highway { Configurable::Configurable() { } void Configurable::SetProperty(int key, std::string value, int slot/*= 0*/) { } std::string Configurable::GetProperty(int key, std::string default_/*= ""*/, int slot/*= 0*/) { return default_; } void Configurable::SetProperty(int key, int value, int slot/*= 0*/) { } int Configurable::GetProperty(int key, int default_/*= 0*/, int slot/*= 0*/) { return default_; } Configurable::~Configurable() { } } /* namespace Highway */