| 1277 | } |
| 1278 | |
| 1279 | bool CommandLineArgs::hasParam(const char* paramKey) const { |
| 1280 | return std::find(m_params.begin(), m_params.end(), std::string(paramKey)) != m_params.end(); |
| 1281 | } |
| 1282 | |
| 1283 | bool CommandLineArgs::empty(void) const { |
| 1284 | return m_params.empty() && m_paramsWithValue.empty(); |
no test coverage detected