/*============================================================================= Copyright (c) 2001-2003 Joel de Guzman Copyright (c) 2004 Peder Holt 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_VALUE_AT_HPP) #define FUSION_SEQUENCE_VALUE_AT_HPP #include #include namespace boost { namespace fusion { namespace meta { template struct value_at_impl { template struct apply { typedef int type; }; }; template struct value_at_c { typedef as_fusion_sequence seq_converter; typedef typename seq_converter::type seq; typedef typename value_at_impl:: template apply::type type; }; template struct value_at : value_at_c {}; } }} #endif