2 // Copyright Aleksey Gurtovoy 2000-2008
\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 the main "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
18 typedef typename T::type type;
\r
21 template< typename T >
\r
22 struct quote_impl< T,false >
\r
28 template< typename P1 > class F
\r
29 , typename Tag = void_
\r
33 template< typename U1 > struct apply
\r
36 typedef typename quote_impl<
\r
38 , 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
52 typedef typename quote_impl<
\r
54 , aux::has_type< F< U1,U2 > >::value
\r
60 template< typename P1, typename P2, typename P3 > class F
\r
61 , typename Tag = void_
\r
65 template< typename U1, typename U2, typename U3 > struct apply
\r
68 typedef typename quote_impl<
\r
70 , aux::has_type< F< U1,U2,U3 > >::value
\r
76 template< typename P1, typename P2, typename P3, typename P4 > class F
\r
77 , typename Tag = void_
\r
82 typename U1, typename U2, typename U3, typename U4
\r
87 typedef typename quote_impl<
\r
89 , aux::has_type< F< U1,U2,U3,U4 > >::value
\r
96 typename P1, typename P2, typename P3, typename P4
\r
100 , typename Tag = void_
\r
105 typename U1, typename U2, typename U3, typename U4
\r
111 typedef typename quote_impl<
\r
112 F< U1,U2,U3,U4,U5 >
\r
113 , aux::has_type< F< U1,U2,U3,U4,U5 > >::value
\r