| 1 |
|
/** @file HydroCmd.h |
| 2 |
|
* @brief The header file for the command line option parser |
| 3 |
< |
* generated by GNU Gengetopt version 2.22 |
| 3 |
> |
* generated by GNU Gengetopt version 2.22.4 |
| 4 |
|
* http://www.gnu.org/software/gengetopt. |
| 5 |
|
* DO NOT modify this file, since it can be overwritten |
| 6 |
|
* @author GNU Gengetopt by Lorenzo Bettini */ |
| 20 |
|
#endif /* __cplusplus */ |
| 21 |
|
|
| 22 |
|
#ifndef CMDLINE_PARSER_PACKAGE |
| 23 |
< |
/** @brief the program name */ |
| 23 |
> |
/** @brief the program name (used for printing errors) */ |
| 24 |
|
#define CMDLINE_PARSER_PACKAGE "Hydro" |
| 25 |
|
#endif |
| 26 |
|
|
| 27 |
+ |
#ifndef CMDLINE_PARSER_PACKAGE_NAME |
| 28 |
+ |
/** @brief the complete program name (used for help and version) */ |
| 29 |
+ |
#define CMDLINE_PARSER_PACKAGE_NAME "Hydro" |
| 30 |
+ |
#endif |
| 31 |
+ |
|
| 32 |
|
#ifndef CMDLINE_PARSER_VERSION |
| 33 |
|
/** @brief the program version */ |
| 34 |
|
#define CMDLINE_PARSER_VERSION "1.0" |
| 58 |
|
unsigned int model_given ; /**< @brief Whether model was given. */ |
| 59 |
|
unsigned int beads_given ; /**< @brief Whether beads was given. */ |
| 60 |
|
|
| 61 |
+ |
char **inputs ; /**< @brief unamed options (options without names) */ |
| 62 |
+ |
unsigned inputs_num ; /**< @brief unamed options number */ |
| 63 |
|
} ; |
| 64 |
|
|
| 65 |
|
/** @brief The additional parameters to pass to parser functions */ |
| 86 |
|
* @param args_info the structure where option information will be stored |
| 87 |
|
* @return 0 if everything went fine, NON 0 if an error took place |
| 88 |
|
*/ |
| 89 |
< |
int cmdline_parser (int argc, char * const *argv, |
| 89 |
> |
int cmdline_parser (int argc, char **argv, |
| 90 |
|
struct gengetopt_args_info *args_info); |
| 91 |
|
|
| 92 |
|
/** |
| 100 |
|
* @return 0 if everything went fine, NON 0 if an error took place |
| 101 |
|
* @deprecated use cmdline_parser_ext() instead |
| 102 |
|
*/ |
| 103 |
< |
int cmdline_parser2 (int argc, char * const *argv, |
| 103 |
> |
int cmdline_parser2 (int argc, char **argv, |
| 104 |
|
struct gengetopt_args_info *args_info, |
| 105 |
|
int override, int initialize, int check_required); |
| 106 |
|
|
| 112 |
|
* @param params additional parameters for the parser |
| 113 |
|
* @return 0 if everything went fine, NON 0 if an error took place |
| 114 |
|
*/ |
| 115 |
< |
int cmdline_parser_ext (int argc, char * const *argv, |
| 115 |
> |
int cmdline_parser_ext (int argc, char **argv, |
| 116 |
|
struct gengetopt_args_info *args_info, |
| 117 |
|
struct cmdline_parser_params *params); |
| 118 |
|
|