Files
Embedded-System-Test-Automa…/src/core/cli_parser.h

13 lines
177 B
C++

#ifndef CLI_PARSER_H
#define CLI_PARSER_H
#include "test_options.h"
class CLIParser
{
public:
static TestOptions parse(int argc, char* argv[]);
};
#endif // CLI_PARSER_H