1 | # Boost string_algo library documentation Jamfile --------------------------------- |
---|
2 | # |
---|
3 | # Copyright Pavol Droba 2002-2003. Use, modification and |
---|
4 | # distribution is subject to the Boost Software License, Version |
---|
5 | # 1.0. (See accompanying file LICENSE_1_0.txt or copy at |
---|
6 | # http://www.boost.org/LICENSE_1_0.txt) |
---|
7 | # |
---|
8 | # See http://www.boost.org for updates, documentation, and revision history. |
---|
9 | |
---|
10 | import toolset ; |
---|
11 | toolset.using doxygen ; |
---|
12 | |
---|
13 | boostbook string_algo : string_algo.xml ; |
---|
14 | |
---|
15 | doxygen autodoc |
---|
16 | : |
---|
17 | [ glob ../../../../boost/algorithm/string.hpp ] |
---|
18 | [ glob ../../../../boost/algorithm/string_regex.hpp ] |
---|
19 | |
---|
20 | [ glob ../../../../boost/algorithm/string/classification.hpp ] |
---|
21 | [ glob ../../../../boost/algorithm/string/iterator_range.hpp ] |
---|
22 | [ glob ../../../../boost/algorithm/string/sequence_traits.hpp ] |
---|
23 | [ glob ../../../../boost/algorithm/string/std_containers_traits.hpp ] |
---|
24 | [ glob ../../../../boost/algorithm/string/concept.hpp ] |
---|
25 | [ glob ../../../../boost/algorithm/string/compare.hpp ] |
---|
26 | [ glob ../../../../boost/algorithm/string/constants.hpp ] |
---|
27 | [ glob ../../../../boost/algorithm/string/case_conv.hpp ] |
---|
28 | [ glob ../../../../boost/algorithm/string/find.hpp ] |
---|
29 | [ glob ../../../../boost/algorithm/string/finder.hpp ] |
---|
30 | [ glob ../../../../boost/algorithm/string/find_iterator.hpp ] |
---|
31 | [ glob ../../../../boost/algorithm/string/trim.hpp ] |
---|
32 | [ glob ../../../../boost/algorithm/string/predicate.hpp ] |
---|
33 | [ glob ../../../../boost/algorithm/string/split.hpp ] |
---|
34 | [ glob ../../../../boost/algorithm/string/iter_find.hpp ] |
---|
35 | [ glob ../../../../boost/algorithm/string/erase.hpp ] |
---|
36 | [ glob ../../../../boost/algorithm/string/join.hpp ] |
---|
37 | [ glob ../../../../boost/algorithm/string/replace.hpp ] |
---|
38 | [ glob ../../../../boost/algorithm/string/find_format.hpp ] |
---|
39 | [ glob ../../../../boost/algorithm/string/formatter.hpp ] |
---|
40 | [ glob ../../../../boost/algorithm/string/regex.hpp ] |
---|
41 | [ glob ../../../../boost/algorithm/string/regex_find_format.hpp ] |
---|
42 | : |
---|
43 | <doxygen:param>HIDE_UNDOC_MEMBERS=YES |
---|
44 | <doxygen:param>EXTRACT_PRIVATE=NO |
---|
45 | <doxygen:param>ENABLE_PREPROCESSING=YES |
---|
46 | <doxygen:param>MACRO_EXPANSION=YES |
---|
47 | <doxygen:param>EXPAND_ONLY_PREDEF=YES |
---|
48 | <doxygen:param>SEARCH_INCLUDES=YES |
---|
49 | <doxygen:param>PREDEFINED="BOOST_STRING_TYPENAME=typename \"BOOST_STATIC_CONSTANT(type,var)=static const type var;\"" |
---|
50 | ; |
---|
51 | |
---|
52 | |
---|
53 | |
---|
54 | |
---|