123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- #ifndef BOOST_CMDLINE_HPP_VP_2004_03_13
- #define BOOST_CMDLINE_HPP_VP_2004_03_13
- namespace boost { namespace program_options { namespace command_line_style {
-
- enum style_t {
-
- allow_long = 1,
-
- allow_short = allow_long << 1,
-
- allow_dash_for_short = allow_short << 1,
-
- allow_slash_for_short = allow_dash_for_short << 1,
-
- long_allow_adjacent = allow_slash_for_short << 1,
-
- long_allow_next = long_allow_adjacent << 1,
-
- short_allow_adjacent = long_allow_next << 1,
-
- short_allow_next = short_allow_adjacent << 1,
-
- allow_sticky = short_allow_next << 1,
-
- allow_guessing = allow_sticky << 1,
-
-
- long_case_insensitive = allow_guessing << 1,
-
-
- short_case_insensitive = long_case_insensitive << 1,
-
-
- case_insensitive = (long_case_insensitive | short_case_insensitive),
-
- allow_long_disguise = short_case_insensitive << 1,
-
- unix_style = (allow_short | short_allow_adjacent | short_allow_next
- | allow_long | long_allow_adjacent | long_allow_next
- | allow_sticky | allow_guessing
- | allow_dash_for_short),
-
- default_style = unix_style
- };
- }}}
- #endif
|