epoc32/include/stdapis/boost/mpl/aux_/preprocessed/plain/quote.hpp
author William Roberts <williamr@symbian.org>
Wed, 31 Mar 2010 12:33:34 +0100
branchSymbian3
changeset 4 837f303aceeb
parent 3 e1b950c65cb4
permissions -rw-r--r--
Current Symbian^3 public API header files (from PDK 3.0.h)
This is the epoc32/include tree with the "platform" subtrees removed, and
all but a selected few mbg and rsg files removed.
williamr@2
     1
williamr@2
     2
// Copyright Aleksey Gurtovoy 2000-2004
williamr@2
     3
//
williamr@2
     4
// Distributed under the Boost Software License, Version 1.0. 
williamr@2
     5
// (See accompanying file LICENSE_1_0.txt or copy at 
williamr@2
     6
// http://www.boost.org/LICENSE_1_0.txt)
williamr@2
     7
//
williamr@2
     8
williamr@4
     9
// Preprocessed version of "boost/mpl/quote.hpp" header
williamr@4
    10
// -- DO NOT modify by hand!
williamr@2
    11
williamr@2
    12
namespace boost { namespace mpl {
williamr@2
    13
williamr@2
    14
template< typename T, bool has_type_ >
williamr@2
    15
struct quote_impl
williamr@2
    16
    : T
williamr@2
    17
{
williamr@2
    18
};
williamr@2
    19
williamr@2
    20
template< typename T >
williamr@4
    21
struct quote_impl< T,false >
williamr@2
    22
{
williamr@2
    23
    typedef T type;
williamr@2
    24
};
williamr@2
    25
williamr@4
    26
template<
williamr@4
    27
      template< typename P1 > class F
williamr@4
    28
    , typename Tag = void_
williamr@4
    29
    >
williamr@4
    30
struct quote1
williamr@4
    31
{
williamr@4
    32
    template< typename U1 > struct apply
williamr@2
    33
williamr@4
    34
        : quote_impl<
williamr@4
    35
              F<U1>
williamr@4
    36
            , aux::has_type< F<U1> >::value
williamr@4
    37
            >
williamr@4
    38
williamr@2
    39
    {
williamr@2
    40
    };
williamr@2
    41
};
williamr@2
    42
williamr@2
    43
template<
williamr@4
    44
      template< typename P1, typename P2 > class F
williamr@2
    45
    , typename Tag = void_
williamr@2
    46
    >
williamr@4
    47
struct quote2
williamr@2
    48
{
williamr@4
    49
    template< typename U1, typename U2 > struct apply
williamr@4
    50
williamr@2
    51
        : quote_impl<
williamr@4
    52
              F< U1,U2 >
williamr@4
    53
            , aux::has_type< F< U1,U2 > >::value
williamr@2
    54
            >
williamr@4
    55
williamr@2
    56
    {
williamr@2
    57
    };
williamr@2
    58
};
williamr@2
    59
williamr@4
    60
template<
williamr@4
    61
      template< typename P1, typename P2, typename P3 > class F
williamr@4
    62
    , typename Tag = void_
williamr@4
    63
    >
williamr@4
    64
struct quote3
williamr@4
    65
{
williamr@4
    66
    template< typename U1, typename U2, typename U3 > struct apply
williamr@4
    67
williamr@4
    68
        : quote_impl<
williamr@4
    69
              F< U1,U2,U3 >
williamr@4
    70
            , aux::has_type< F< U1,U2,U3 > >::value
williamr@4
    71
            >
williamr@4
    72
williamr@4
    73
    {
williamr@4
    74
    };
williamr@4
    75
};
williamr@4
    76
williamr@4
    77
template<
williamr@4
    78
      template< typename P1, typename P2, typename P3, typename P4 > class F
williamr@4
    79
    , typename Tag = void_
williamr@4
    80
    >
williamr@4
    81
struct quote4
williamr@4
    82
{
williamr@4
    83
    template<
williamr@4
    84
          typename U1, typename U2, typename U3, typename U4
williamr@4
    85
        >
williamr@4
    86
    struct apply
williamr@4
    87
williamr@4
    88
        : quote_impl<
williamr@4
    89
              F< U1,U2,U3,U4 >
williamr@4
    90
            , aux::has_type< F< U1,U2,U3,U4 > >::value
williamr@4
    91
            >
williamr@4
    92
williamr@4
    93
    {
williamr@4
    94
    };
williamr@4
    95
};
williamr@4
    96
williamr@4
    97
template<
williamr@4
    98
      template<
williamr@4
    99
          typename P1, typename P2, typename P3, typename P4
williamr@4
   100
        , typename P5
williamr@4
   101
        >
williamr@4
   102
      class F
williamr@4
   103
    , typename Tag = void_
williamr@4
   104
    >
williamr@4
   105
struct quote5
williamr@4
   106
{
williamr@4
   107
    template<
williamr@4
   108
          typename U1, typename U2, typename U3, typename U4
williamr@4
   109
        , typename U5
williamr@4
   110
        >
williamr@4
   111
    struct apply
williamr@4
   112
williamr@4
   113
        : quote_impl<
williamr@4
   114
              F< U1,U2,U3,U4,U5 >
williamr@4
   115
            , aux::has_type< F< U1,U2,U3,U4,U5 > >::value
williamr@4
   116
            >
williamr@4
   117
williamr@4
   118
    {
williamr@4
   119
    };
williamr@4
   120
};
williamr@4
   121
williamr@4
   122
}}
williamr@4
   123