1 #ifndef _ARGS_PARSER_H_ 2 #define _ARGS_PARSER_H_ 35 bool Parse(
int argc,
char **argv);
bool Parse(int argc, char **argv)
Parses and handles the application command line parameters.
Definition: args_parser.cc:22
ArgsParser(AppConfig &_cfg, AppInfo &_app_info)
Initializes the object.
Definition: args_parser.h:25
AppConfig & cfg
Application configuration.
Definition: args_parser.h:16
Contains the run-time information of the application.
Definition: app_info.h:21
Contains the configuration parameters of the application.
Definition: app_config.h:18
AppInfo & app_info
Application run-time information.
Definition: args_parser.h:17
Class that allows to parse and handle the application command line parameters.
Definition: args_parser.h:13