/*============================================================================= Copyright (c) 2001-2003 Joel de Guzman Use, modification and distribution is subject to 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_SEQUENCE_DETAIL_TUPLE_ACCESS_RESULT_HPP) #define FUSION_SEQUENCE_DETAIL_TUPLE_ACCESS_RESULT_HPP #include #include #include #include #include namespace boost { namespace fusion { namespace detail { template struct tuple_access_result { typedef mpl::at_c element; typedef typename mpl::eval_if< is_const , cref_result , ref_result >::type type; }; }}} #endif