Update contrib.
1 ///////////////////////////////////////////////////////////////////////////////
2 /// \file xpressive_fwd.hpp
3 /// Forward declarations for all of xpressive's public data types.
5 // Copyright 2004 Eric Niebler. Distributed under the Boost
6 // Software License, Version 1.0. (See accompanying file
7 // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
9 #ifndef BOOST_XPRESSIVE_XPRESSIVE_FWD_HPP_EAN_10_04_2005
10 #define BOOST_XPRESSIVE_XPRESSIVE_FWD_HPP_EAN_10_04_2005
12 // MS compatible compilers support #pragma once
13 #if defined(_MSC_VER) && (_MSC_VER >= 1020)
18 #include <boost/config.hpp>
19 #include <boost/iterator/iterator_traits.hpp>
21 #ifdef BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION
22 # error Sorry, xpressive requires a compiler that supports partial template specialization.
25 #if defined(BOOST_NO_STD_LOCALE) & !defined(BOOST_XPRESSIVE_USE_C_TRAITS)
26 # define BOOST_XPRESSIVE_USE_C_TRAITS
29 #if defined(BOOST_NO_CWCHAR) | defined(BOOST_NO_CWCTYPE) | defined(BOOST_NO_STD_WSTRING)
30 # ifndef BOOST_XPRESSIVE_NO_WREGEX
31 # define BOOST_XPRESSIVE_NO_WREGEX
35 #include <boost/xpressive/proto/proto_fwd.hpp>
37 namespace boost { namespace xpressive
39 template<typename Char, typename Impl>
42 template<typename Char>
43 struct cpp_regex_traits;
45 template<typename Char>
46 struct c_regex_traits;
48 template<typename Elem>
49 struct null_regex_traits;
53 template<typename Char>
54 struct default_regex_traits
56 #ifdef BOOST_XPRESSIVE_USE_C_TRAITS
57 typedef c_regex_traits<Char> type;
59 typedef cpp_regex_traits<Char> type;
63 struct mark_placeholder;
65 typedef proto::unary_op<detail::mark_placeholder, proto::noop_tag> mark_tag;
69 using detail::mark_tag;
71 typedef void const *regex_id_type;
75 struct regex_traits_version_1_tag;
77 struct regex_traits_version_1_case_fold_tag;
79 template<typename BidiIter>
82 template<typename BidiIter>
85 template<typename BidiIter>
86 struct regex_iterator;
88 template<typename BidiIter>
89 struct regex_token_iterator;
91 template<typename BidiIter>
92 struct regex_id_filter_predicate;
94 template<typename BidiIter>
97 template<typename Action, typename Saved = Action>
100 template<typename RegexTraits>
101 struct compiler_traits;
103 template<typename Char, typename Impl = typename detail::default_regex_traits<Char>::type>
109 , typename RegexTraits = regex_traits<typename iterator_value<BidiIter>::type>
110 , typename CompilerTraits = compiler_traits<RegexTraits>
112 struct regex_compiler;
114 ///////////////////////////////////////////////////////////////////////////////
117 typedef basic_regex<std::string::const_iterator> sregex;
118 typedef basic_regex<char const *> cregex;
120 #ifndef BOOST_XPRESSIVE_NO_WREGEX
121 typedef basic_regex<std::wstring::const_iterator> wsregex;
122 typedef basic_regex<wchar_t const *> wcregex;
125 typedef regex_compiler<std::string::const_iterator> sregex_compiler;
126 typedef regex_compiler<char const *> cregex_compiler;
128 #ifndef BOOST_XPRESSIVE_NO_WREGEX
129 typedef regex_compiler<std::wstring::const_iterator> wsregex_compiler;
130 typedef regex_compiler<wchar_t const *> wcregex_compiler;
133 typedef regex_iterator<std::string::const_iterator> sregex_iterator;
134 typedef regex_iterator<char const *> cregex_iterator;
136 #ifndef BOOST_XPRESSIVE_NO_WREGEX
137 typedef regex_iterator<std::wstring::const_iterator> wsregex_iterator;
138 typedef regex_iterator<wchar_t const *> wcregex_iterator;
141 typedef regex_token_iterator<std::string::const_iterator> sregex_token_iterator;
142 typedef regex_token_iterator<char const *> cregex_token_iterator;
144 #ifndef BOOST_XPRESSIVE_NO_WREGEX
145 typedef regex_token_iterator<std::wstring::const_iterator> wsregex_token_iterator;
146 typedef regex_token_iterator<wchar_t const *> wcregex_token_iterator;
149 typedef match_results<std::string::const_iterator> smatch;
150 typedef match_results<char const *> cmatch;
152 #ifndef BOOST_XPRESSIVE_NO_WREGEX
153 typedef match_results<std::wstring::const_iterator> wsmatch;
154 typedef match_results<wchar_t const *> wcmatch;
157 typedef regex_id_filter_predicate<std::string::const_iterator> sregex_id_filter_predicate;
158 typedef regex_id_filter_predicate<char const *> cregex_id_filter_predicate;
160 #ifndef BOOST_XPRESSIVE_NO_WREGEX
161 typedef regex_id_filter_predicate<std::wstring::const_iterator> wsregex_id_filter_predicate;
162 typedef regex_id_filter_predicate<wchar_t const *> wcregex_id_filter_predicate;
165 }} // namespace boost::xpressive