sl@0
|
1 |
// Copyright Vladimir Prus 2004.
|
sl@0
|
2 |
// Distributed under the Boost Software License, Version 1.0.
|
sl@0
|
3 |
// (See accompanying file LICENSE_1_0.txt
|
sl@0
|
4 |
// or copy at http://www.boost.org/LICENSE_1_0.txt)
|
sl@0
|
5 |
|
sl@0
|
6 |
#ifndef BOOST_OPTION_HPP_VP_2004_02_25
|
sl@0
|
7 |
#define BOOST_OPTION_HPP_VP_2004_02_25
|
sl@0
|
8 |
|
sl@0
|
9 |
#include <boost/program_options/config.hpp>
|
sl@0
|
10 |
|
sl@0
|
11 |
#include <string>
|
sl@0
|
12 |
#include <vector>
|
sl@0
|
13 |
|
sl@0
|
14 |
namespace boost { namespace program_options {
|
sl@0
|
15 |
|
sl@0
|
16 |
/** Option found in input source.
|
sl@0
|
17 |
Contains a key and a value. The key, in turn, can be a string (name of
|
sl@0
|
18 |
an option), or an integer (position in input source) -- in case no name
|
sl@0
|
19 |
is specified. The latter is only possible for command line.
|
sl@0
|
20 |
The template parameter specifies the type of char used for storing the
|
sl@0
|
21 |
option's value.
|
sl@0
|
22 |
*/
|
sl@0
|
23 |
template<class charT>
|
sl@0
|
24 |
class basic_option {
|
sl@0
|
25 |
public:
|
sl@0
|
26 |
basic_option() : position_key(-1), unregistered(false) {}
|
sl@0
|
27 |
basic_option(const std::string& string_key,
|
sl@0
|
28 |
const std::vector< std::string> &value)
|
sl@0
|
29 |
: string_key(string_key), value(value), unregistered(false)
|
sl@0
|
30 |
{}
|
sl@0
|
31 |
|
sl@0
|
32 |
/** String key of this option. Intentionally independent of the template
|
sl@0
|
33 |
parameter. */
|
sl@0
|
34 |
std::string string_key;
|
sl@0
|
35 |
/** Position key of this option. All options without an explicit name are
|
sl@0
|
36 |
sequentially numbered starting from 0. If an option has explicit name,
|
sl@0
|
37 |
'position_key' is equal to -1. It is possible that both
|
sl@0
|
38 |
position_key and string_key is specified, in case name is implicitly
|
sl@0
|
39 |
added.
|
sl@0
|
40 |
*/
|
sl@0
|
41 |
int position_key;
|
sl@0
|
42 |
/** Option's value */
|
sl@0
|
43 |
std::vector< std::basic_string<charT> > value;
|
sl@0
|
44 |
/** The original unchanged tokens this option was
|
sl@0
|
45 |
created from. */
|
sl@0
|
46 |
std::vector< std::basic_string<charT> > original_tokens;
|
sl@0
|
47 |
/** True if option was not recognized. In that case,
|
sl@0
|
48 |
'string_key' and 'value' are results of purely
|
sl@0
|
49 |
syntactic parsing of source. The original tokens can be
|
sl@0
|
50 |
recovered from the "original_tokens" member.
|
sl@0
|
51 |
*/
|
sl@0
|
52 |
bool unregistered;
|
sl@0
|
53 |
|
sl@0
|
54 |
};
|
sl@0
|
55 |
typedef basic_option<char> option;
|
sl@0
|
56 |
typedef basic_option<wchar_t> woption;
|
sl@0
|
57 |
|
sl@0
|
58 |
}}
|
sl@0
|
59 |
|
sl@0
|
60 |
#endif
|