// Boost result_of library // Copyright Douglas Gregor 2004. Use, modification and // distribution is 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) // Copyright Daniel Walker, Eric Niebler, Michel Morin 2008-2012. // Use, modification and distribution is 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) // For more information, see http://www.boost.org/libs/utility #ifndef BOOST_RESULT_OF_HPP # error Boost result_of - do not include this file! #endif template struct tr1_result_of : conditional< is_pointer::value || is_member_function_pointer::value , boost::detail::tr1_result_of_impl< typename remove_cv::type, typename remove_cv::type(Args...), (boost::detail::result_of_has_result_type::value)> , boost::detail::tr1_result_of_impl< F, F(Args...), (boost::detail::result_of_has_result_type::value)> >::type { }; #ifdef BOOST_RESULT_OF_USE_DECLTYPE template struct result_of : detail::cpp0x_result_of { }; #endif // BOOST_RESULT_OF_USE_DECLTYPE #ifdef BOOST_RESULT_OF_USE_TR1_WITH_DECLTYPE_FALLBACK template struct result_of : conditional::value || detail::result_of_has_result::value, tr1_result_of, detail::cpp0x_result_of >::type { }; #endif // BOOST_RESULT_OF_USE_TR1_WITH_DECLTYPE_FALLBACK #if defined(BOOST_RESULT_OF_USE_DECLTYPE) || defined(BOOST_RESULT_OF_USE_TR1_WITH_DECLTYPE_FALLBACK) namespace detail { template struct cpp0x_result_of : conditional< is_member_function_pointer::value , detail::tr1_result_of_impl< typename remove_cv::type, typename remove_cv::type(Args...), false > , detail::cpp0x_result_of_impl< F(Args...) > >::type {}; #ifdef BOOST_NO_SFINAE_EXPR template struct result_of_callable_fun_2; template struct result_of_callable_fun_2 { R operator()(Args...) const; typedef result_of_private_type const &(*pfn_t)(...); operator pfn_t() const volatile; }; template struct result_of_callable_fun : result_of_callable_fun_2 {}; template struct result_of_callable_fun : result_of_callable_fun_2 {}; template struct result_of_select_call_wrapper_type : conditional< is_class::type>::value, result_of_wrap_callable_class, type_identity::type>::type> > >::type {}; template struct result_of_is_callable { typedef typename result_of_select_call_wrapper_type::type wrapper_t; static const bool value = ( sizeof(result_of_no_type) == sizeof(detail::result_of_is_private_type( (boost::declval()(boost::declval()...), result_of_weird_type()) )) ); typedef integral_constant type; }; template struct cpp0x_result_of_impl : lazy_enable_if< result_of_is_callable , cpp0x_result_of_impl > {}; template struct cpp0x_result_of_impl { typedef decltype( boost::declval()( boost::declval()... ) ) type; }; #else // BOOST_NO_SFINAE_EXPR template struct cpp0x_result_of_impl()( boost::declval()... ) )>::type> { typedef decltype( boost::declval()( boost::declval()... ) ) type; }; #endif // BOOST_NO_SFINAE_EXPR } // namespace detail #else // defined(BOOST_RESULT_OF_USE_DECLTYPE) || defined(BOOST_RESULT_OF_USE_TR1_WITH_DECLTYPE_FALLBACK) template struct result_of : tr1_result_of { }; #endif // defined(BOOST_RESULT_OF_USE_DECLTYPE) namespace detail { template struct tr1_result_of_impl { typedef R type; }; template struct tr1_result_of_impl { typedef R type; }; template struct tr1_result_of_impl { typedef R type; }; template struct tr1_result_of_impl { typedef R type; }; template struct tr1_result_of_impl { typedef R type; }; template struct tr1_result_of_impl { typedef R type; }; }