@brief Sets arguments and parses them
| 1277 | virtual ~CommandLineArgs(void) {} |
| 1278 | /// @brief Sets arguments and parses them |
| 1279 | inline void setArgs(int argc, const char** argv) { |
| 1280 | setArgs(argc, const_cast<char**>(argv)); |
| 1281 | } |
| 1282 | /// @brief Sets arguments and parses them |
| 1283 | void setArgs(int argc, char** argv); |
| 1284 | /// @brief Returns true if arguments contain paramKey with a value (seperated by '=') |
nothing calls this directly
no outgoing calls
no test coverage detected