/*============================================================================== Copyright (c) 2005-2010 Joel de Guzman Copyright (c) 2010 Thomas Heller 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) ==============================================================================*/ namespace result_of { template struct actor; template struct nullary_actor_result { typedef typename boost::phoenix::evaluator::impl< Expr const& , vector2< vector1 *> & , default_actions > const & , proto::empty_env >::result_type type; }; template struct actor { typedef typename mpl::eval_if_c< result_of::is_nullary::value , nullary_actor_result , mpl::identity >::type type; }; template struct actor { typedef typename phoenix::evaluator:: impl< Expr const& , vector2< vector2 *, A0> & , default_actions > const & , proto::empty_env >::result_type type; }; template struct actor { typedef typename phoenix::evaluator:: impl< Expr const& , vector2< vector3 *, A0 , A1> & , default_actions > const & , proto::empty_env >::result_type type; }; template struct actor { typedef typename phoenix::evaluator:: impl< Expr const& , vector2< vector4 *, A0 , A1 , A2> & , default_actions > const & , proto::empty_env >::result_type type; }; template struct actor { typedef typename phoenix::evaluator:: impl< Expr const& , vector2< vector5 *, A0 , A1 , A2 , A3> & , default_actions > const & , proto::empty_env >::result_type type; }; template struct actor { typedef typename phoenix::evaluator:: impl< Expr const& , vector2< vector6 *, A0 , A1 , A2 , A3 , A4> & , default_actions > const & , proto::empty_env >::result_type type; }; template struct actor { typedef typename phoenix::evaluator:: impl< Expr const& , vector2< vector7 *, A0 , A1 , A2 , A3 , A4 , A5> & , default_actions > const & , proto::empty_env >::result_type type; }; template struct actor { typedef typename phoenix::evaluator:: impl< Expr const& , vector2< vector8 *, A0 , A1 , A2 , A3 , A4 , A5 , A6> & , default_actions > const & , proto::empty_env >::result_type type; }; template struct actor { typedef typename phoenix::evaluator:: impl< Expr const& , vector2< vector9 *, A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7> & , default_actions > const & , proto::empty_env >::result_type type; }; template struct actor { typedef typename phoenix::evaluator:: impl< Expr const& , vector2< vector10 *, A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8> & , default_actions > const & , proto::empty_env >::result_type type; }; template struct actor { typedef typename phoenix::evaluator:: impl< Expr const& , vector2< vector11 *, A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9> & , default_actions > const & , proto::empty_env >::result_type type; }; }