| 106 | std::string GetConfigStringParam(const std::string& k) { return GetConfigParam<std::string>(k); } |
| 107 | int64_t GetConfigIntParam(const std::string& k) { return GetConfigParam<int64_t>(k); } |
| 108 | bool GetConfigBoolParam(const std::string& k) {return GetConfigParam<bool>(k); } |
| 109 | double GetConfigDoubleParam(const std::string& k) { return GetConfigParam<double>(k); } |
| 110 | |
| 111 | protected: |
nothing calls this directly
no outgoing calls
no test coverage detected