/*============================================================================= Copyright (c) 2006-2007 Tobias Schwinger Use modification and distribution are subject to 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(BOOST_FUSION_FUNCTIONAL_ADAPTER_UNFUSED_RVALUE_ARGS_HPP_INCLUDED) #if !defined(BOOST_PP_IS_ITERATING) #include #include #include #include #include #include #include #include #include #include #include namespace boost { namespace fusion { template class unfused_rvalue_args; //----- ---- --- -- - - - - struct void_; template class unfused_rvalue_args : public detail::nullary_call_base , Function> { Function fnc_transformed; template friend struct detail::nullary_call_base; typedef detail::nullary_call_base< fusion::unfused_rvalue_args, Function > base; typedef typename remove_const::type>::type function; typedef typename detail::call_param::type func_const_fwd_t; public: inline explicit unfused_rvalue_args(func_const_fwd_t f = function()) : fnc_transformed(f) { } using base::operator(); template struct result { }; template struct result< Self const () > : base::call_const_0_result_class { }; template struct result< Self() > : base::call_0_result_class { }; #define BOOST_PP_FILENAME_1 \ #define BOOST_PP_ITERATION_LIMITS \ (1,BOOST_FUSION_UNFUSED_RVALUE_ARGS_MAX_ARITY) #include BOOST_PP_ITERATE() }; }} namespace boost { template struct result_of const ()> { typedef typename boost::fusion::unfused_rvalue_args::call_const_0_result type; }; template struct result_of()> { typedef typename boost::fusion::unfused_rvalue_args::call_0_result type; }; } #define BOOST_FUSION_FUNCTIONAL_ADAPTER_UNFUSED_RVALUE_ARGS_HPP_INCLUDED #else // defined(BOOST_PP_IS_ITERATING) //////////////////////////////////////////////////////////////////////////////// // // Preprocessor vertical repetition code // //////////////////////////////////////////////////////////////////////////////// #define N BOOST_PP_ITERATION() template struct result< Self const (BOOST_PP_ENUM_PARAMS(N,T)) > : function::template result< function const ( BOOST_PP_CAT(fusion::vector,N)< BOOST_PP_ENUM_BINARY_PARAMS(N, typename detail::cref::type BOOST_PP_INTERCEPT) >)> { }; template struct result< Self (BOOST_PP_ENUM_PARAMS(N,T)) > : function::template result< function ( BOOST_PP_CAT(fusion::vector,N)< BOOST_PP_ENUM_BINARY_PARAMS(N, typename detail::cref::type BOOST_PP_INTERCEPT) >)> { }; template inline typename function::template result)>::type operator()(BOOST_PP_ENUM_BINARY_PARAMS(N,T,const& a)) const { BOOST_PP_CAT(fusion::vector,N)< BOOST_PP_ENUM_BINARY_PARAMS(N,T,const& BOOST_PP_INTERCEPT) > arg(BOOST_PP_ENUM_PARAMS(N,a)); return this->fnc_transformed(arg); } template inline typename function::template result)>::type operator()(BOOST_PP_ENUM_BINARY_PARAMS(N,T,const& a)) { BOOST_PP_CAT(fusion::vector,N)< BOOST_PP_ENUM_BINARY_PARAMS(N,T,const& BOOST_PP_INTERCEPT) > arg(BOOST_PP_ENUM_PARAMS(N,a)); return this->fnc_transformed(arg); } #undef N #endif // defined(BOOST_PP_IS_ITERATING) #endif