/*============================================================================= Copyright (c) 2001-2006 Joel de Guzman Copyright (c) 2006 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(FUSION_CONVERT_20061213_2207) #define FUSION_CONVERT_20061213_2207 #include #include #include #include #include namespace boost { namespace fusion { namespace result_of { template struct as_deque { typedef typename detail::as_deque::value> gen; typedef typename gen:: template apply::type>::type type; }; } template inline typename result_of::as_deque::type as_deque(Sequence& seq) { typedef typename result_of::as_deque::gen gen; return gen::call(fusion::begin(seq)); } template inline typename result_of::as_deque::type as_deque(Sequence const& seq) { typedef typename result_of::as_deque::gen gen; return gen::call(fusion::begin(seq)); } }} #endif