/*============================================================================= Copyright (c) 2001-2007 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) ==============================================================================*/ #ifndef PHOENIX_OPERATOR_DETAIL_BINARY_EVAL_HPP #define PHOENIX_OPERATOR_DETAIL_BINARY_EVAL_HPP #include #include #include #include #include #define PHOENIX_BINARY_EVAL(eval_name, op_result, expr) \ struct eval_name \ { \ template \ struct result \ { \ typedef typename A0::template result::type x_type; \ typedef typename A1::template result::type y_type; \ \ typedef typename \ mpl::eval_if< \ mpl::or_, is_actor > \ , re_curry \ , op_result \ >::type \ type; \ }; \ \ template \ static RT \ eval(Env const& env, A0& a0, A1& a1) \ { \ return expr; \ } \ }; #undef x #undef y #endif