| 1268 | } |
| 1269 | |
| 1270 | bool CommandLineArgs::hasParamWithValue(const char* paramKey) const { |
| 1271 | return m_paramsWithValue.find(std::string(paramKey)) != m_paramsWithValue.end(); |
| 1272 | } |
| 1273 | |
| 1274 | const char* CommandLineArgs::getParamValue(const char* paramKey) const { |
| 1275 | std::map<std::string, std::string>::const_iterator iter = m_paramsWithValue.find(std::string(paramKey)); |
no test coverage detected