Chris@16: /*============================================================================= Chris@16: Copyright (c) 2001-2011 Joel de Guzman Chris@16: Copyright (c) 2006 Dan Marsden Chris@16: Chris@16: Distributed under the Boost Software License, Version 1.0. (See accompanying Chris@16: file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) Chris@16: ==============================================================================*/ Chris@16: #if !defined(FUSION_JOIN_200601222109) Chris@16: #define FUSION_JOIN_200601222109 Chris@16: Chris@101: #include Chris@16: #include Chris@16: Chris@16: namespace boost { namespace fusion { Chris@16: Chris@16: namespace result_of Chris@16: { Chris@16: template Chris@16: struct join Chris@16: { Chris@16: typedef joint_view type; Chris@16: }; Chris@16: } Chris@16: Chris@16: template Chris@101: BOOST_CONSTEXPR BOOST_FUSION_GPU_ENABLED Chris@16: inline typename result_of::join::type Chris@16: join(LhSequence const& lhs, RhSequence const& rhs) Chris@16: { Chris@16: return typename result_of::join::type( Chris@16: lhs, rhs); Chris@16: } Chris@16: }} Chris@16: Chris@16: #endif