/*============================================================================= Copyright (c) 2001-2007 Joel de Guzman Copyright (c) 2005-2007 Dan Marsden 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(BOOST_FUSION_AT_KEY_IMPL_20070508_2248) #define BOOST_FUSION_AT_KEY_IMPL_20070508_2248 #include namespace boost { namespace fusion { struct struct_tag; namespace extension { template struct at_key_impl; template struct struct_assoc_member; template <> struct at_key_impl { template struct apply { typedef typename extension::struct_assoc_member element; typedef typename mpl::eval_if< is_const , detail::cref_result , detail::ref_result >::type type; static type call(Sequence& seq) { return extension:: struct_assoc_member::call(seq); } }; }; } }} #endif