/usr/include/boost/fusion/support/detail
NameSizeModeActions
access.hpp14530644editdlrm
and.hpp18380644editdlrm
as_fusion_element.hpp14780644editdlrm
enabler.hpp6400644editdlrm
index_sequence.hpp23910644editdlrm
is_mpl_sequence.hpp9570644editdlrm
is_native_fusion_sequence.hpp9470644editdlrm
is_same_size.hpp10840644editdlrm
mpl_iterator_category.hpp17540644editdlrm
pp_round.hpp30490644editdlrm
segmented_fold_until_impl.hpp137100644editdlrm
Edit: /usr/include/boost/fusion/support/detail/access.hpp (1453B)
/*============================================================================= Copyright (c) 2001-2011 Joel de Guzman 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) ==============================================================================*/ #if !defined(FUSION_ACCESS_04182005_0737) #define FUSION_ACCESS_04182005_0737 #include #include #include namespace boost { namespace fusion { namespace detail { template struct ref_result { typedef typename add_reference::type type; }; template struct cref_result { typedef typename add_reference< typename add_const::type >::type type; }; template struct call_param { typedef T const& type; }; template struct call_param { typedef T& type; }; template struct call_param { typedef T const& type; }; template struct call_param { typedef T const& type; }; template struct call_param { typedef T const& type; }; }}} #endif