2 #if !defined(BOOST_PP_IS_ITERATING)
\r
6 #ifndef BOOST_MPL_QUOTE_HPP_INCLUDED
\r
7 #define BOOST_MPL_QUOTE_HPP_INCLUDED
\r
9 // Copyright Aleksey Gurtovoy 2000-2008
\r
11 // Distributed under the Boost Software License, Version 1.0.
\r
12 // (See accompanying file LICENSE_1_0.txt or copy at
\r
13 // http://www.boost.org/LICENSE_1_0.txt)
\r
15 // See http://www.boost.org/libs/mpl for documentation.
\r
17 // $Id: quote.hpp 49272 2008-10-11 06:50:46Z agurtovoy $
\r
18 // $Date: 2008-10-11 02:50:46 -0400 (Sat, 11 Oct 2008) $
\r
19 // $Revision: 49272 $
\r
21 #if !defined(BOOST_MPL_PREPROCESSING_MODE)
\r
22 # include <boost/mpl/void.hpp>
\r
23 # include <boost/mpl/aux_/has_type.hpp>
\r
26 #include <boost/mpl/aux_/config/bcc.hpp>
\r
27 #include <boost/mpl/aux_/config/ttp.hpp>
\r
29 #if defined(BOOST_MPL_CFG_NO_TEMPLATE_TEMPLATE_PARAMETERS) \
\r
30 && !defined(BOOST_MPL_CFG_BCC590_WORKAROUNDS)
\r
31 # define BOOST_MPL_CFG_NO_QUOTE_TEMPLATE
\r
34 #if !defined(BOOST_MPL_CFG_NO_IMPLICIT_METAFUNCTIONS) \
\r
35 && defined(BOOST_MPL_CFG_NO_HAS_XXX)
\r
36 # define BOOST_MPL_CFG_NO_IMPLICIT_METAFUNCTIONS
\r
39 #include <boost/mpl/aux_/config/use_preprocessed.hpp>
\r
41 #if !defined(BOOST_MPL_CFG_NO_PREPROCESSED_HEADERS) \
\r
42 && !defined(BOOST_MPL_PREPROCESSING_MODE)
\r
44 # define BOOST_MPL_PREPROCESSED_HEADER quote.hpp
\r
45 # include <boost/mpl/aux_/include_preprocessed.hpp>
\r
49 # include <boost/mpl/limits/arity.hpp>
\r
50 # include <boost/mpl/aux_/preprocessor/params.hpp>
\r
51 # include <boost/mpl/aux_/config/ctps.hpp>
\r
52 # include <boost/mpl/aux_/config/workaround.hpp>
\r
54 # include <boost/preprocessor/iterate.hpp>
\r
55 # include <boost/preprocessor/cat.hpp>
\r
57 #if !defined(BOOST_MPL_CFG_NO_QUOTE_TEMPLATE)
\r
59 namespace boost { namespace mpl {
\r
61 #if !defined(BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION)
\r
63 template< typename T, bool has_type_ >
\r
65 // GCC has a problem with metafunction forwarding when T is a
\r
66 // specialization of a template called 'type'.
\r
67 # if BOOST_WORKAROUND(__GNUC__, BOOST_TESTED_AT(4)) \
\r
68 && BOOST_WORKAROUND(__GNUC_MINOR__, BOOST_TESTED_AT(0)) \
\r
69 && BOOST_WORKAROUND(__GNUC_PATCHLEVEL__, BOOST_TESTED_AT(2))
\r
71 typedef typename T::type type;
\r
79 template< typename T >
\r
80 struct quote_impl<T,false>
\r
85 #else // BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION
\r
87 template< bool > struct quote_impl
\r
89 template< typename T > struct result_
\r
95 template<> struct quote_impl<false>
\r
97 template< typename T > struct result_
\r
105 #define BOOST_PP_ITERATION_PARAMS_1 \
\r
106 (3,(1, BOOST_MPL_LIMIT_METAFUNCTION_ARITY, <boost/mpl/quote.hpp>))
\r
107 #include BOOST_PP_ITERATE()
\r
111 #endif // BOOST_MPL_CFG_NO_QUOTE_TEMPLATE
\r
113 #endif // BOOST_MPL_CFG_NO_PREPROCESSED_HEADERS
\r
114 #endif // BOOST_MPL_QUOTE_HPP_INCLUDED
\r
119 #define i_ BOOST_PP_FRAME_ITERATION(1)
\r
122 template< BOOST_MPL_PP_PARAMS(i_, typename P) > class F
\r
123 , typename Tag = void_
\r
125 struct BOOST_PP_CAT(quote,i_)
\r
127 template< BOOST_MPL_PP_PARAMS(i_, typename U) > struct apply
\r
128 #if defined(BOOST_MPL_CFG_BCC590_WORKAROUNDS)
\r
130 typedef typename quote_impl<
\r
131 F< BOOST_MPL_PP_PARAMS(i_, U) >
\r
132 , aux::has_type< F< BOOST_MPL_PP_PARAMS(i_, U) > >::value
\r
135 #elif !defined(BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION)
\r
137 F< BOOST_MPL_PP_PARAMS(i_, U) >
\r
138 , aux::has_type< F< BOOST_MPL_PP_PARAMS(i_, U) > >::value
\r
143 : quote_impl< aux::has_type< F< BOOST_MPL_PP_PARAMS(i_, U) > >::value >
\r
144 ::template result_< F< BOOST_MPL_PP_PARAMS(i_, U) > >
\r
151 #endif // BOOST_PP_IS_ITERATING
\r