/*============================================================================= 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_DEREF_IMPL_07162005_1026) #define FUSION_DEREF_IMPL_07162005_1026 #include #include #include #include namespace boost { namespace fusion { struct transform_view_iterator_tag; struct transform_view_iterator2_tag; namespace extension { template struct deref_impl; // Unary Version template <> struct deref_impl { template struct apply { typedef typename result_of::deref::type value_type; typedef detail::apply_transform_result transform_type; typedef typename mpl::apply::type type; static type call(Iterator const& i) { return i.f(*i.first); } }; }; // Binary Version template <> struct deref_impl { template struct apply { typedef typename result_of::deref::type value1_type; typedef typename result_of::deref::type value2_type; typedef detail::apply_transform_result transform_type; typedef typename mpl::apply::type type; static type call(Iterator const& i) { return i.f(*i.first1, *i.first2); } }; }; } }} #endif