2 // Copyright Aleksey Gurtovoy 2000-2004
\r
4 // Distributed under the Boost Software License, Version 1.0.
\r
5 // (See accompanying file LICENSE_1_0.txt or copy at
\r
6 // http://www.boost.org/LICENSE_1_0.txt)
\r
9 // Preprocessed version of "boost/mpl/quote.hpp" header
\r
10 // -- DO NOT modify by hand!
\r
12 namespace boost { namespace mpl {
\r
14 template< typename T, bool has_type_ >
\r
17 typedef typename T::type type;
\r
20 template< typename T >
\r
21 struct quote_impl< T,false >
\r
27 template< typename P1 > class F
\r
28 , typename Tag = void_
\r
32 template< typename U1 > struct apply
\r
36 , aux::has_type< F<U1> >::value
\r
44 template< typename P1, typename P2 > class F
\r
45 , typename Tag = void_
\r
49 template< typename U1, typename U2 > struct apply
\r
53 , aux::has_type< F< U1,U2 > >::value
\r
61 template< typename P1, typename P2, typename P3 > class F
\r
62 , typename Tag = void_
\r
66 template< typename U1, typename U2, typename U3 > struct apply
\r
70 , aux::has_type< F< U1,U2,U3 > >::value
\r
78 template< typename P1, typename P2, typename P3, typename P4 > class F
\r
79 , typename Tag = void_
\r
84 typename U1, typename U2, typename U3, typename U4
\r
90 , aux::has_type< F< U1,U2,U3,U4 > >::value
\r
99 typename P1, typename P2, typename P3, typename P4
\r
103 , typename Tag = void_
\r
108 typename U1, typename U2, typename U3, typename U4
\r
114 F< U1,U2,U3,U4,U5 >
\r
115 , aux::has_type< F< U1,U2,U3,U4,U5 > >::value
\r