/usr/include/boost/mpl/aux_/preprocessed/bcc
NameSizeModeActions
advance_backward.hpp22020644editdlrm
advance_forward.hpp21820644editdlrm
and.hpp12580644editdlrm
apply.hpp27450644editdlrm
apply_fwd.hpp9730644editdlrm
apply_wrap.hpp70780644editdlrm
arg.hpp26900644editdlrm
basic_bind.hpp71180644editdlrm
bind.hpp104200644editdlrm
bind_fwd.hpp8230644editdlrm
bitand.hpp32090644editdlrm
bitor.hpp31790644editdlrm
bitxor.hpp32090644editdlrm
deque.hpp97240644editdlrm
divides.hpp31920644editdlrm
equal_to.hpp20980644editdlrm
fold_impl.hpp43500644editdlrm
full_lambda.hpp115060644editdlrm
greater.hpp20810644editdlrm
greater_equal.hpp21720644editdlrm
inherit.hpp27500644editdlrm
iter_fold_if_impl.hpp42700644editdlrm
iter_fold_impl.hpp41540644editdlrm
lambda_no_ctps.hpp64730644editdlrm
less.hpp20360644editdlrm
less_equal.hpp21270644editdlrm
list.hpp96170644editdlrm
list_c.hpp107180644editdlrm
map.hpp95520644editdlrm
minus.hpp31320644editdlrm
modulus.hpp22940644editdlrm
not_equal_to.hpp21570644editdlrm
or.hpp12590644editdlrm
placeholders.hpp22120644editdlrm
plus.hpp31020644editdlrm
quote.hpp23460644editdlrm
reverse_fold_impl.hpp88660644editdlrm
reverse_iter_fold_impl.hpp82460644editdlrm
set.hpp95520644editdlrm
set_c.hpp106530644editdlrm
shift_left.hpp22530644editdlrm
shift_right.hpp22680644editdlrm
template_arity.hpp7630644editdlrm
times.hpp31320644editdlrm
unpack_args.hpp19860644editdlrm
vector.hpp97470644editdlrm
vector_c.hpp122380644editdlrm
Edit: /usr/include/boost/mpl/aux_/preprocessed/bcc/quote.hpp (2346B)
// Copyright Aleksey Gurtovoy 2000-2008 // // Distributed under the Boost Software License, Version 1.0. // (See accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) // // *Preprocessed* version of the main "quote.hpp" header // -- DO NOT modify by hand! namespace boost { namespace mpl { template< typename T, bool has_type_ > struct quote_impl { typedef typename T::type type; }; template< typename T > struct quote_impl< T,false > { typedef T type; }; template< template< typename P1 > class F , typename Tag = void_ > struct quote1 { template< typename U1 > struct apply { typedef typename quote_impl< F , aux::has_type< F >::value >::type type; }; }; template< template< typename P1, typename P2 > class F , typename Tag = void_ > struct quote2 { template< typename U1, typename U2 > struct apply { typedef typename quote_impl< F< U1,U2 > , aux::has_type< F< U1,U2 > >::value >::type type; }; }; template< template< typename P1, typename P2, typename P3 > class F , typename Tag = void_ > struct quote3 { template< typename U1, typename U2, typename U3 > struct apply { typedef typename quote_impl< F< U1,U2,U3 > , aux::has_type< F< U1,U2,U3 > >::value >::type type; }; }; template< template< typename P1, typename P2, typename P3, typename P4 > class F , typename Tag = void_ > struct quote4 { template< typename U1, typename U2, typename U3, typename U4 > struct apply { typedef typename quote_impl< F< U1,U2,U3,U4 > , aux::has_type< F< U1,U2,U3,U4 > >::value >::type type; }; }; template< template< typename P1, typename P2, typename P3, typename P4 , typename P5 > class F , typename Tag = void_ > struct quote5 { template< typename U1, typename U2, typename U3, typename U4 , typename U5 > struct apply { typedef typename quote_impl< F< U1,U2,U3,U4,U5 > , aux::has_type< F< U1,U2,U3,U4,U5 > >::value >::type type; }; }; }}