| 71 | // GetConfig with default value |
| 72 | template<typename Value> |
| 73 | inline bool GetConfig( const EffectDefinitionInterface& ident, |
| 74 | ConfigurationType type, const RegistryPath & group, |
| 75 | const RegistryPath & key, Value &var, const Value &defval) |
| 76 | { return GetConfigValue(ident, type, group, key, |
| 77 | std::ref(var), std::cref(defval)); } |
| 78 | |
| 79 | // GetConfig with implicitly converted default value |
| 80 | template<typename Value, typename ConvertibleToValue> |
no test coverage detected