/*============================================================================= 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) This is an auto-generated file. Do not edit! ==============================================================================*/ namespace boost { namespace fusion { template struct tuple : vector { typedef vector< T0 , T1 , T2 , T3 , T4 , T5 , T6 , T7 , T8 , T9> base_type; tuple() : base_type() {} tuple(tuple const& rhs) : base_type(rhs) {} template tuple(std::pair const& rhs) : base_type(rhs) {} explicit tuple(typename detail::call_param::type _0) : base_type(_0) {} template tuple(tuple const& rhs) : base_type(rhs) {} template tuple& operator=(tuple const& rhs) { base_type::operator=(rhs); return *this; } tuple(typename detail::call_param::type _0 , typename detail::call_param::type _1) : base_type(_0 , _1) {} template tuple(tuple const& rhs) : base_type(rhs) {} template tuple& operator=(tuple const& rhs) { base_type::operator=(rhs); return *this; } tuple(typename detail::call_param::type _0 , typename detail::call_param::type _1 , typename detail::call_param::type _2) : base_type(_0 , _1 , _2) {} template tuple(tuple const& rhs) : base_type(rhs) {} template tuple& operator=(tuple const& rhs) { base_type::operator=(rhs); return *this; } tuple(typename detail::call_param::type _0 , typename detail::call_param::type _1 , typename detail::call_param::type _2 , typename detail::call_param::type _3) : base_type(_0 , _1 , _2 , _3) {} template tuple(tuple const& rhs) : base_type(rhs) {} template tuple& operator=(tuple const& rhs) { base_type::operator=(rhs); return *this; } tuple(typename detail::call_param::type _0 , typename detail::call_param::type _1 , typename detail::call_param::type _2 , typename detail::call_param::type _3 , typename detail::call_param::type _4) : base_type(_0 , _1 , _2 , _3 , _4) {} template tuple(tuple const& rhs) : base_type(rhs) {} template tuple& operator=(tuple const& rhs) { base_type::operator=(rhs); return *this; } tuple(typename detail::call_param::type _0 , typename detail::call_param::type _1 , typename detail::call_param::type _2 , typename detail::call_param::type _3 , typename detail::call_param::type _4 , typename detail::call_param::type _5) : base_type(_0 , _1 , _2 , _3 , _4 , _5) {} template tuple(tuple const& rhs) : base_type(rhs) {} template tuple& operator=(tuple const& rhs) { base_type::operator=(rhs); return *this; } tuple(typename detail::call_param::type _0 , typename detail::call_param::type _1 , typename detail::call_param::type _2 , typename detail::call_param::type _3 , typename detail::call_param::type _4 , typename detail::call_param::type _5 , typename detail::call_param::type _6) : base_type(_0 , _1 , _2 , _3 , _4 , _5 , _6) {} template tuple(tuple const& rhs) : base_type(rhs) {} template tuple& operator=(tuple const& rhs) { base_type::operator=(rhs); return *this; } tuple(typename detail::call_param::type _0 , typename detail::call_param::type _1 , typename detail::call_param::type _2 , typename detail::call_param::type _3 , typename detail::call_param::type _4 , typename detail::call_param::type _5 , typename detail::call_param::type _6 , typename detail::call_param::type _7) : base_type(_0 , _1 , _2 , _3 , _4 , _5 , _6 , _7) {} template tuple(tuple const& rhs) : base_type(rhs) {} template tuple& operator=(tuple const& rhs) { base_type::operator=(rhs); return *this; } tuple(typename detail::call_param::type _0 , typename detail::call_param::type _1 , typename detail::call_param::type _2 , typename detail::call_param::type _3 , typename detail::call_param::type _4 , typename detail::call_param::type _5 , typename detail::call_param::type _6 , typename detail::call_param::type _7 , typename detail::call_param::type _8) : base_type(_0 , _1 , _2 , _3 , _4 , _5 , _6 , _7 , _8) {} template tuple(tuple const& rhs) : base_type(rhs) {} template tuple& operator=(tuple const& rhs) { base_type::operator=(rhs); return *this; } tuple(typename detail::call_param::type _0 , typename detail::call_param::type _1 , typename detail::call_param::type _2 , typename detail::call_param::type _3 , typename detail::call_param::type _4 , typename detail::call_param::type _5 , typename detail::call_param::type _6 , typename detail::call_param::type _7 , typename detail::call_param::type _8 , typename detail::call_param::type _9) : base_type(_0 , _1 , _2 , _3 , _4 , _5 , _6 , _7 , _8 , _9) {} template tuple(tuple const& rhs) : base_type(rhs) {} template tuple& operator=(tuple const& rhs) { base_type::operator=(rhs); return *this; } template tuple& operator=(T const& rhs) { base_type::operator=(rhs); return *this; } tuple& operator=(tuple const& rhs) { base_type::operator=(rhs); return *this; } template tuple& operator=(std::pair const& rhs) { base_type::operator=(rhs); return *this; } }; template struct tuple_size : result_of::size {}; template struct tuple_element : result_of::value_at_c {}; template inline typename lazy_disable_if< is_const , result_of::at_c >::type get(Tuple& tup) { return at_c(tup); } template inline typename result_of::at_c::type get(Tuple const& tup) { return at_c(tup); } }}