lemon/arg_parser.h
changeset 879 38213abd2911
parent 877 141f9c0db4a3
child 1123 18c89646185e
     1.1 --- a/lemon/arg_parser.h	Sat Mar 06 14:35:12 2010 +0000
     1.2 +++ b/lemon/arg_parser.h	Thu Mar 18 00:30:25 2010 +0100
     1.3 @@ -35,12 +35,19 @@
     1.4  namespace lemon {
     1.5  
     1.6    ///Exception used by ArgParser
     1.7 +
     1.8 +  ///Exception used by ArgParser.
     1.9 +  ///
    1.10    class ArgParserException : public Exception {
    1.11    public:
    1.12 +    /// Reasons for failure
    1.13 +
    1.14 +    /// Reasons for failure.
    1.15 +    ///
    1.16      enum Reason {
    1.17 -      HELP,         /// <tt>--help</tt> option was given
    1.18 -      UNKNOWN_OPT,  /// Unknown option was given
    1.19 -      INVALID_OPT   /// Invalid combination of options
    1.20 +      HELP,         ///< <tt>--help</tt> option was given.
    1.21 +      UNKNOWN_OPT,  ///< Unknown option was given.
    1.22 +      INVALID_OPT   ///< Invalid combination of options.
    1.23      };
    1.24  
    1.25    private: