os/ossrv/ossrv_pub/boost_apis/boost/program_options/cmdline.hpp
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/ossrv/ossrv_pub/boost_apis/boost/program_options/cmdline.hpp	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,85 @@
     1.4 +// Copyright Vladimir Prus 2004.
     1.5 +// Distributed under the Boost Software License, Version 1.0.
     1.6 +// (See accompanying file LICENSE_1_0.txt
     1.7 +// or copy at http://www.boost.org/LICENSE_1_0.txt)
     1.8 +
     1.9 +#ifndef BOOST_CMDLINE_HPP_VP_2004_03_13
    1.10 +#define BOOST_CMDLINE_HPP_VP_2004_03_13
    1.11 +
    1.12 +namespace boost { namespace program_options { namespace command_line_style {
    1.13 +    /** Various possible styles of options.
    1.14 +        
    1.15 +    There are "long" options, which start with "--" and "short",
    1.16 +    which start with either "-" or "/". Both kinds can be allowed or
    1.17 +    disallowed, see allow_long and allow_short. The allowed character
    1.18 +    for short options is also configurable.
    1.19 +
    1.20 +    Option's value can be specified in the same token as name
    1.21 +    ("--foo=bar"), or in the next token.
    1.22 +
    1.23 +    It's possible to introduce long options by the same character as
    1.24 +    short options, see allow_long_disguise.
    1.25 +
    1.26 +    Finally, guessing (specifying only prefix of option) and case
    1.27 +    insensitive processing are supported.
    1.28 +    */
    1.29 +    enum style_t {
    1.30 +        /// Allow "--long_name" style
    1.31 +        allow_long = 1,
    1.32 +        /// Alow "-<single character" style
    1.33 +        allow_short = allow_long << 1,
    1.34 +        /// Allow "-" in short options
    1.35 +        allow_dash_for_short = allow_short << 1,
    1.36 +        /// Allow "/" in short options
    1.37 +        allow_slash_for_short = allow_dash_for_short << 1,
    1.38 +        /** Allow option parameter in the same token
    1.39 +            for long option, like in
    1.40 +            @verbatim
    1.41 +            --foo=10
    1.42 +            @endverbatim
    1.43 +        */
    1.44 +        long_allow_adjacent = allow_slash_for_short << 1,
    1.45 +        /** Allow option parameter in the next token for
    1.46 +            long options. */
    1.47 +        long_allow_next = long_allow_adjacent << 1,
    1.48 +        /** Allow option parameter in the same token for
    1.49 +            short options. */
    1.50 +        short_allow_adjacent = long_allow_next << 1,
    1.51 +        /** Allow option parameter in the next token for
    1.52 +            short options. */
    1.53 +        short_allow_next = short_allow_adjacent << 1,
    1.54 +        /** Allow to merge several short options together,
    1.55 +            so that "-s -k" become "-sk". All of the options
    1.56 +            but last should accept no parameter. For example, if
    1.57 +            "-s" accept a parameter, then "k" will be taken as
    1.58 +            parameter, not another short option. 
    1.59 +            Dos-style short options cannot be sticky.
    1.60 +        */
    1.61 +        allow_sticky = short_allow_next << 1,
    1.62 +        /** Allow abbreviated spellings for long options,
    1.63 +            if they unambiguously identify long option. 
    1.64 +            No long option name should be prefix of other 
    1.65 +            long option name if guessing is in effect.
    1.66 +        */
    1.67 +        allow_guessing = allow_sticky << 1,
    1.68 +        /** Ignore the difference in case for options. 
    1.69 +            @todo Should this apply to long options only?
    1.70 +        */            
    1.71 +        case_insensitive = allow_guessing << 1,
    1.72 +        /** Allow long options with single option starting character,
    1.73 +            e.g <tt>-foo=10</tt>
    1.74 +        */
    1.75 +        allow_long_disguise = case_insensitive << 1,
    1.76 +        /** The more-or-less traditional unix style. */
    1.77 +        unix_style = (allow_short | short_allow_adjacent | short_allow_next
    1.78 +                      | allow_long | long_allow_adjacent | long_allow_next
    1.79 +                      | allow_sticky | allow_guessing 
    1.80 +                      | allow_dash_for_short),
    1.81 +        /** The default style. */
    1.82 +        default_style = unix_style
    1.83 +    };
    1.84 +}}}
    1.85 +
    1.86 +
    1.87 +#endif
    1.88 +