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
13 template< bool > struct quote_impl
\r
15 template< typename T > struct result_
\r
21 template<> struct quote_impl<false>
\r
23 template< typename T > struct result_
\r
30 template< typename P1 > class F
\r
31 , typename Tag = void_
\r
35 template< typename U1 > struct apply
\r
37 : quote_impl< aux::has_type< F<U1> >::value >
\r
38 ::template result_< F<U1> >
\r
45 template< typename P1, typename P2 > class F
\r
46 , typename Tag = void_
\r
50 template< typename U1, typename U2 > struct apply
\r
52 : quote_impl< aux::has_type< F< U1,U2 > >::value >
\r
53 ::template result_< F< U1,U2 > >
\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
67 : quote_impl< aux::has_type< F< U1,U2,U3 > >::value >
\r
68 ::template result_< F< U1,U2,U3 > >
\r
75 template< typename P1, typename P2, typename P3, typename P4 > class F
\r
76 , typename Tag = void_
\r
81 typename U1, typename U2, typename U3, typename U4
\r
85 : quote_impl< aux::has_type< F< U1,U2,U3,U4 > >::value >
\r
86 ::template result_< F< U1,U2,U3,U4 > >
\r
94 typename P1, typename P2, typename P3, typename P4
\r
98 , typename Tag = void_
\r
103 typename U1, typename U2, typename U3, typename U4
\r
108 : quote_impl< aux::has_type< F< U1,U2,U3,U4,U5 > >::value >
\r
109 ::template result_< F< U1,U2,U3,U4,U5 > >
\r