~ubuntu-branches/ubuntu/quantal/gengetopt/quantal

« back to all changes in this revision

Viewing changes to doc/cmdline1.h

  • Committer: Package Import Robot
  • Author(s): Alessio Treglia
  • Date: 2011-09-26 10:27:31 UTC
  • mfrom: (1.1.9 upstream)
  • Revision ID: package-import@ubuntu.com-20110926102731-vh42p0vriqz4kp3h
Tags: 2.22.5-1
* New upstream release:
  - correctly wraps and preprocess the specified usage string
  - handle escaped newline chars in the .ggo file correctly
  - initialize enum variables with a generated null value (makes
    the parser compilable in C++)
  - removed warnings in generated parser when only flags are used
* Fix gbp config file.
* Bump Standards.
* Drop unneeded dependency on dpkg (>= 1.15.4), stable has a newer version.
* Refresh patches.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/** @file cmdline1.h
2
2
 *  @brief The header file for the command line option parser
3
 
 *  generated by GNU Gengetopt version 2.22.4
 
3
 *  generated by GNU Gengetopt version 2.22.5
4
4
 *  http://www.gnu.org/software/gengetopt.
5
5
 *  DO NOT modify this file, since it can be overwritten
6
6
 *  @author GNU Gengetopt by Lorenzo Bettini */
44
44
  char * str_opt_arg;   /**< @brief A string option, for a filename.  */
45
45
  char * str_opt_orig;  /**< @brief A string option, for a filename original value given at command line.  */
46
46
  const char *str_opt_help; /**< @brief A string option, for a filename help description.  */
47
 
  int my_opt_arg;       /**< @brief Another integer option, this time the description of the option should be \"quite\" long to require wrapping... possibly more than one wrapping :-) especially if I\nrequire a line break.  */
48
 
  char * my_opt_orig;   /**< @brief Another integer option, this time the description of the option should be \"quite\" long to require wrapping... possibly more than one wrapping :-) especially if I\nrequire a line break original value given at command line.  */
49
 
  const char *my_opt_help; /**< @brief Another integer option, this time the description of the option should be \"quite\" long to require wrapping... possibly more than one wrapping :-) especially if I\nrequire a line break help description.  */
 
47
  int my_opt_arg;       /**< @brief Another integer option, this time the description of the option should be \"quite\" long to require wrapping... possibly more than one wrapping :-) especially if I
 
48
  require a line break.  */
 
49
  char * my_opt_orig;   /**< @brief Another integer option, this time the description of the option should be \"quite\" long to require wrapping... possibly more than one wrapping :-) especially if I
 
50
  require a line break original value given at command line.  */
 
51
  const char *my_opt_help; /**< @brief Another integer option, this time the description of the option should be \"quite\" long to require wrapping... possibly more than one wrapping :-) especially if I
 
52
  require a line break help description.  */
50
53
  int int_opt_arg;      /**< @brief A int option.  */
51
54
  char * int_opt_orig;  /**< @brief A int option original value given at command line.  */
52
55
  const char *int_opt_help; /**< @brief A int option help description.  */