1 #ifndef CONFIGURABLE_H_
2 #define CONFIGURABLE_H_
5 #include "ConfigRuntime.h"
21 template<
typename T>
inline T GetConfig(std::string key, T defaultValue)
23 return m_config->Get<T>(m_configSection, key, defaultValue);
27 ConfigRuntime*
const m_config;
28 std::string m_configSection;