/*============================================================================= Copyright (c) 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_SINGLE_VIEW_BEGIN_END_TRAITS_HPP) #define FUSION_SEQUENCE_DETAIL_SINGLE_VIEW_BEGIN_END_TRAITS_HPP #include namespace boost { namespace fusion { struct single_view_tag; template struct single_view_iterator_end; template struct single_view_iterator; namespace single_view_detail { template struct begin_traits_impl { typedef single_view_iterator type; static type call(Sequence& s); }; template inline typename begin_traits_impl::type begin_traits_impl::call(Sequence& s) { return type(s); } template struct end_traits_impl { typedef single_view_iterator_end type; static type call(Sequence&); }; template inline typename end_traits_impl::type end_traits_impl::call(Sequence&) { FUSION_RETURN_DEFAULT_CONSTRUCTED; } } namespace meta { template struct begin_impl; template <> struct begin_impl { template struct apply : single_view_detail::begin_traits_impl {}; }; template struct end_impl; template <> struct end_impl { template struct apply : single_view_detail::end_traits_impl {}; }; } }} namespace boost { namespace mpl { template struct begin_impl; template struct end_impl; template <> struct begin_impl : fusion::meta::begin_impl {}; template <> struct end_impl : fusion::meta::end_impl {}; }} #endif