/*============================================================================= 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