os/ossrv/ossrv_pub/boost_apis/boost/xpressive/xpressive_fwd.hpp
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
///////////////////////////////////////////////////////////////////////////////
sl@0
     2
/// \file xpressive_fwd.hpp
sl@0
     3
/// Forward declarations for all of xpressive's public data types.
sl@0
     4
//
sl@0
     5
//  Copyright 2004 Eric Niebler. Distributed under the Boost
sl@0
     6
//  Software License, Version 1.0. (See accompanying file
sl@0
     7
//  LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
sl@0
     8
sl@0
     9
#ifndef BOOST_XPRESSIVE_XPRESSIVE_FWD_HPP_EAN_10_04_2005
sl@0
    10
#define BOOST_XPRESSIVE_XPRESSIVE_FWD_HPP_EAN_10_04_2005
sl@0
    11
sl@0
    12
// MS compatible compilers support #pragma once
sl@0
    13
#if defined(_MSC_VER) && (_MSC_VER >= 1020)
sl@0
    14
# pragma once
sl@0
    15
#endif
sl@0
    16
sl@0
    17
#include <string>
sl@0
    18
#include <boost/config.hpp>
sl@0
    19
#include <boost/iterator/iterator_traits.hpp>
sl@0
    20
sl@0
    21
#ifdef BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION
sl@0
    22
# error Sorry, xpressive requires a compiler that supports partial template specialization.
sl@0
    23
#endif
sl@0
    24
sl@0
    25
#if defined(BOOST_NO_STD_LOCALE) & !defined(BOOST_XPRESSIVE_USE_C_TRAITS)
sl@0
    26
# define BOOST_XPRESSIVE_USE_C_TRAITS
sl@0
    27
#endif
sl@0
    28
sl@0
    29
#if defined(BOOST_NO_CWCHAR) | defined(BOOST_NO_CWCTYPE) | defined(BOOST_NO_STD_WSTRING)
sl@0
    30
# ifndef BOOST_XPRESSIVE_NO_WREGEX
sl@0
    31
#  define BOOST_XPRESSIVE_NO_WREGEX
sl@0
    32
# endif
sl@0
    33
#endif
sl@0
    34
sl@0
    35
#include <boost/xpressive/proto/proto_fwd.hpp>
sl@0
    36
sl@0
    37
namespace boost { namespace xpressive
sl@0
    38
{
sl@0
    39
    template<typename Char, typename Impl>
sl@0
    40
    struct regex_traits;
sl@0
    41
sl@0
    42
    template<typename Char>
sl@0
    43
    struct cpp_regex_traits;
sl@0
    44
sl@0
    45
    template<typename Char>
sl@0
    46
    struct c_regex_traits;
sl@0
    47
sl@0
    48
    template<typename Elem>
sl@0
    49
    struct null_regex_traits;
sl@0
    50
sl@0
    51
    namespace detail
sl@0
    52
    {
sl@0
    53
        template<typename Char>
sl@0
    54
        struct default_regex_traits
sl@0
    55
        {
sl@0
    56
            #ifdef BOOST_XPRESSIVE_USE_C_TRAITS
sl@0
    57
            typedef c_regex_traits<Char> type;
sl@0
    58
            #else
sl@0
    59
            typedef cpp_regex_traits<Char> type;
sl@0
    60
            #endif
sl@0
    61
        };
sl@0
    62
sl@0
    63
        struct mark_placeholder;
sl@0
    64
sl@0
    65
        typedef proto::unary_op<detail::mark_placeholder, proto::noop_tag> mark_tag;
sl@0
    66
sl@0
    67
    } // namespace detail
sl@0
    68
sl@0
    69
    using detail::mark_tag;
sl@0
    70
sl@0
    71
    typedef void const *regex_id_type;
sl@0
    72
sl@0
    73
    struct regex_error;
sl@0
    74
sl@0
    75
    struct regex_traits_version_1_tag;
sl@0
    76
sl@0
    77
    struct regex_traits_version_1_case_fold_tag;
sl@0
    78
sl@0
    79
    template<typename BidiIter>
sl@0
    80
    struct basic_regex;
sl@0
    81
sl@0
    82
    template<typename BidiIter>
sl@0
    83
    struct match_results;
sl@0
    84
sl@0
    85
    template<typename BidiIter>
sl@0
    86
    struct regex_iterator;
sl@0
    87
sl@0
    88
    template<typename BidiIter>
sl@0
    89
    struct regex_token_iterator;
sl@0
    90
sl@0
    91
    template<typename BidiIter>
sl@0
    92
    struct regex_id_filter_predicate;
sl@0
    93
sl@0
    94
    template<typename BidiIter>
sl@0
    95
    struct sub_match;
sl@0
    96
sl@0
    97
    template<typename Action, typename Saved = Action>
sl@0
    98
    struct action;
sl@0
    99
sl@0
   100
    template<typename RegexTraits>
sl@0
   101
    struct compiler_traits;
sl@0
   102
sl@0
   103
    template<typename Char, typename Impl = typename detail::default_regex_traits<Char>::type>
sl@0
   104
    struct regex_traits;
sl@0
   105
sl@0
   106
    template
sl@0
   107
    <
sl@0
   108
        typename BidiIter
sl@0
   109
      , typename RegexTraits = regex_traits<typename iterator_value<BidiIter>::type>
sl@0
   110
      , typename CompilerTraits = compiler_traits<RegexTraits>
sl@0
   111
    >
sl@0
   112
    struct regex_compiler;
sl@0
   113
sl@0
   114
    ///////////////////////////////////////////////////////////////////////////////
sl@0
   115
    // Common typedefs
sl@0
   116
    //
sl@0
   117
    typedef basic_regex<std::string::const_iterator>                sregex;
sl@0
   118
    typedef basic_regex<char const *>                               cregex;
sl@0
   119
sl@0
   120
    #ifndef BOOST_XPRESSIVE_NO_WREGEX
sl@0
   121
    typedef basic_regex<std::wstring::const_iterator>               wsregex;
sl@0
   122
    typedef basic_regex<wchar_t const *>                            wcregex;
sl@0
   123
    #endif
sl@0
   124
sl@0
   125
    typedef regex_compiler<std::string::const_iterator>             sregex_compiler;
sl@0
   126
    typedef regex_compiler<char const *>                            cregex_compiler;
sl@0
   127
sl@0
   128
    #ifndef BOOST_XPRESSIVE_NO_WREGEX
sl@0
   129
    typedef regex_compiler<std::wstring::const_iterator>            wsregex_compiler;
sl@0
   130
    typedef regex_compiler<wchar_t const *>                         wcregex_compiler;
sl@0
   131
    #endif
sl@0
   132
sl@0
   133
    typedef regex_iterator<std::string::const_iterator>             sregex_iterator;
sl@0
   134
    typedef regex_iterator<char const *>                            cregex_iterator;
sl@0
   135
sl@0
   136
    #ifndef BOOST_XPRESSIVE_NO_WREGEX
sl@0
   137
    typedef regex_iterator<std::wstring::const_iterator>            wsregex_iterator;
sl@0
   138
    typedef regex_iterator<wchar_t const *>                         wcregex_iterator;
sl@0
   139
    #endif
sl@0
   140
sl@0
   141
    typedef regex_token_iterator<std::string::const_iterator>       sregex_token_iterator;
sl@0
   142
    typedef regex_token_iterator<char const *>                      cregex_token_iterator;
sl@0
   143
sl@0
   144
    #ifndef BOOST_XPRESSIVE_NO_WREGEX
sl@0
   145
    typedef regex_token_iterator<std::wstring::const_iterator>      wsregex_token_iterator;
sl@0
   146
    typedef regex_token_iterator<wchar_t const *>                   wcregex_token_iterator;
sl@0
   147
    #endif
sl@0
   148
sl@0
   149
    typedef match_results<std::string::const_iterator>              smatch;
sl@0
   150
    typedef match_results<char const *>                             cmatch;
sl@0
   151
sl@0
   152
    #ifndef BOOST_XPRESSIVE_NO_WREGEX
sl@0
   153
    typedef match_results<std::wstring::const_iterator>             wsmatch;
sl@0
   154
    typedef match_results<wchar_t const *>                          wcmatch;
sl@0
   155
    #endif
sl@0
   156
sl@0
   157
    typedef regex_id_filter_predicate<std::string::const_iterator>  sregex_id_filter_predicate;
sl@0
   158
    typedef regex_id_filter_predicate<char const *>                 cregex_id_filter_predicate;
sl@0
   159
sl@0
   160
    #ifndef BOOST_XPRESSIVE_NO_WREGEX
sl@0
   161
    typedef regex_id_filter_predicate<std::wstring::const_iterator> wsregex_id_filter_predicate;
sl@0
   162
    typedef regex_id_filter_predicate<wchar_t const *>              wcregex_id_filter_predicate;
sl@0
   163
    #endif
sl@0
   164
sl@0
   165
}} // namespace boost::xpressive
sl@0
   166
sl@0
   167
#endif