this version uppercase result string after loading, should be used for the most of enum-like strings
| 59 | } |
| 60 | // this version uppercase result string after loading, should be used for the most of enum-like strings |
| 61 | std::string LoadConfigStringUCase (const char *pszKey, const char *pszItem, const char *pszDefault) |
| 62 | { |
| 63 | return Util::to_upper_copy(LoadConfigString(pszKey, pszItem, pszDefault)); |
| 64 | } |
| 65 | int LoadConfigInt(const char *pszKey, const char *pszItem, const int iDefault) |
| 66 | { |
| 67 | std::string envKey = envKeyName(pszKey, pszItem); |
no test coverage detected