cpp-stat-bench 0.24.0
Benchmark library with statistics for C++.
|
Class to parse command line arguments. More...
#include <stat_bench/runner/command_line_parser.h>
Public Member Functions | |
CommandLineParser () | |
Constructor. | |
CommandLineParser (CommandLineParser &&)=delete | |
CommandLineParser (const CommandLineParser &)=delete | |
~CommandLineParser () | |
Destructor. | |
auto | cli () -> lyra::cli & |
Access to the command line interface definition. | |
auto | config () -> const Config & |
Get the configuration. | |
auto | operator= (CommandLineParser &&) -> CommandLineParser &=delete |
auto | operator= (const CommandLineParser &) -> CommandLineParser &=delete |
void | parse_cli (int argc, const char **argv) |
Parse command line arguments. | |
Class to parse command line arguments.
Definition at line 34 of file command_line_parser.h.
stat_bench::runner::CommandLineParser::CommandLineParser | ( | ) |
Constructor.
Definition at line 34 of file command_line_parser.cpp.
|
inlinenodiscard |
Access to the command line interface definition.
lyra::cli
objects, see Lyra documentation.Definition at line 67 of file command_line_parser.h.
|
inlinenodiscard |
void stat_bench::runner::CommandLineParser::parse_cli | ( | int | argc, |
const char ** | argv ) |
Parse command line arguments.
[in] | argc | Number of arguments. |
[in] | argv | Arguments. |
Definition at line 120 of file command_line_parser.cpp.