1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108
|
/******************************************************************************
**
** parse_cl.cc
**
** Definition of command line parser class
**
** Automatically created by genparse v0.9.1
**
** See http://genparse.sourceforge.net for details and updates
**
******************************************************************************/
#include <getopt.h>
#include <stdlib.h>
#include "parse_cl.h"
/*----------------------------------------------------------------------------
**
** Cmdline::Cmdline ()
**
** Constructor method.
**
**--------------------------------------------------------------------------*/
Cmdline::Cmdline (int argc, char *argv[]) throw (std::string )
{
extern char *optarg;
extern int optind;
int c;
static struct option long_options[] =
{
{"help", no_argument, NULL, 'h'},
{"version", no_argument, NULL, 'v'},
{NULL, 0, NULL, 0}
};
_program_name += argv[0];
/* default values */
_a = false;
_h = false;
_v = false;
optind = 0;
while ((c = getopt_long (argc, argv, "ahv", long_options, &optind)) != - 1)
{
switch (c)
{
case 'a':
_a = true;
break;
case 'h':
_h = true;
this->usage (EXIT_SUCCESS);
break;
case 'v':
_v = true;
break;
default:
this->usage (EXIT_FAILURE);
}
} /* while */
_optind = optind;
}
/*----------------------------------------------------------------------------
**
** Cmdline::usage ()
**
** Print out usage information, then exit.
**
**--------------------------------------------------------------------------*/
void Cmdline::usage (int status)
{
if (status != EXIT_SUCCESS)
std::cerr << "Try `" << _program_name << " --help' for more information.\n";
else
{
// "comment for parameter a"
std::cout << "\
[ -a ] (type=FLAG)\n\
param a line 1\n";
std::cout << "\
param a line 2\n\
[ -h ] [ --help ] (type=FLAG)\n\
Display this help and exit.\n\
[ -v ] [ --version ] (type=FLAG)\n\
Output version information and exit.\n";
// "comment for parameter a"
std::cout << "\
-a param a line 1\n";
std::cout << "\
param a line 2\n\
-h, --help Display this help and exit.\n\
-v, --version Output version information and exit.\n\
abc\n";
std::cout << "\
def\n";
}
exit (status);
}
|