/usr/include/boost/phoenix/bind/detail/cpp03/preprocessed
NameSizeModeActions
bind_function.hpp11020644editdlrm
bind_function_10.hpp82530644editdlrm
bind_function_20.hpp251580644editdlrm
bind_function_30.hpp503630644editdlrm
bind_function_40.hpp838680644editdlrm
bind_function_50.hpp1256730644editdlrm
bind_function_object.hpp11510644editdlrm
bind_function_object_10.hpp51850644editdlrm
bind_function_object_20.hpp149950644editdlrm
bind_function_object_30.hpp298050644editdlrm
bind_function_object_40.hpp496150644editdlrm
bind_function_object_50.hpp744250644editdlrm
bind_member_function.hpp11510644editdlrm
bind_member_function_10.hpp298900644editdlrm
bind_member_function_20.hpp849150644editdlrm
bind_member_function_30.hpp1648400644editdlrm
bind_member_function_40.hpp2696650644editdlrm
bind_member_function_50.hpp3993900644editdlrm
function_ptr.hpp11190644editdlrm
function_ptr_10.hpp56810644editdlrm
function_ptr_20.hpp145760644editdlrm
function_ptr_30.hpp267710644editdlrm
function_ptr_40.hpp422660644editdlrm
function_ptr_50.hpp610610644editdlrm
member_function_ptr.hpp11680644editdlrm
member_function_ptr_10.hpp111620644editdlrm
member_function_ptr_20.hpp282120644editdlrm
member_function_ptr_30.hpp518620644editdlrm
member_function_ptr_40.hpp821120644editdlrm
member_function_ptr_50.hpp1189620644editdlrm
Edit: /usr/include/boost/phoenix/bind/detail/cpp03/preprocessed/member_function_ptr_10.hpp (11162B)
/*============================================================================= 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) ==============================================================================*/ template <> struct member_function_ptr_impl<1> { template struct impl { typedef RT result_type; impl(FP fp_) : fp(fp_) {} template RT operator()(Class& obj, A0 & a0) const { BOOST_PROTO_USE_GET_POINTER(); typedef typename proto::detail::class_member_traits::class_type class_type; return (BOOST_PROTO_GET_POINTER(class_type, obj)->*fp)(a0); } template RT operator()(Class* obj, A0 & a0) const { return (obj->*fp)(a0); } FP fp; }; }; template <> struct member_function_ptr_impl<2> { template struct impl { typedef RT result_type; impl(FP fp_) : fp(fp_) {} template RT operator()(Class& obj, A0 & a0 , A1 & a1) const { BOOST_PROTO_USE_GET_POINTER(); typedef typename proto::detail::class_member_traits::class_type class_type; return (BOOST_PROTO_GET_POINTER(class_type, obj)->*fp)(a0 , a1); } template RT operator()(Class* obj, A0 & a0 , A1 & a1) const { return (obj->*fp)(a0 , a1); } FP fp; }; }; template <> struct member_function_ptr_impl<3> { template struct impl { typedef RT result_type; impl(FP fp_) : fp(fp_) {} template RT operator()(Class& obj, A0 & a0 , A1 & a1 , A2 & a2) const { BOOST_PROTO_USE_GET_POINTER(); typedef typename proto::detail::class_member_traits::class_type class_type; return (BOOST_PROTO_GET_POINTER(class_type, obj)->*fp)(a0 , a1 , a2); } template RT operator()(Class* obj, A0 & a0 , A1 & a1 , A2 & a2) const { return (obj->*fp)(a0 , a1 , a2); } FP fp; }; }; template <> struct member_function_ptr_impl<4> { template struct impl { typedef RT result_type; impl(FP fp_) : fp(fp_) {} template RT operator()(Class& obj, A0 & a0 , A1 & a1 , A2 & a2 , A3 & a3) const { BOOST_PROTO_USE_GET_POINTER(); typedef typename proto::detail::class_member_traits::class_type class_type; return (BOOST_PROTO_GET_POINTER(class_type, obj)->*fp)(a0 , a1 , a2 , a3); } template RT operator()(Class* obj, A0 & a0 , A1 & a1 , A2 & a2 , A3 & a3) const { return (obj->*fp)(a0 , a1 , a2 , a3); } FP fp; }; }; template <> struct member_function_ptr_impl<5> { template struct impl { typedef RT result_type; impl(FP fp_) : fp(fp_) {} template RT operator()(Class& obj, A0 & a0 , A1 & a1 , A2 & a2 , A3 & a3 , A4 & a4) const { BOOST_PROTO_USE_GET_POINTER(); typedef typename proto::detail::class_member_traits::class_type class_type; return (BOOST_PROTO_GET_POINTER(class_type, obj)->*fp)(a0 , a1 , a2 , a3 , a4); } template RT operator()(Class* obj, A0 & a0 , A1 & a1 , A2 & a2 , A3 & a3 , A4 & a4) const { return (obj->*fp)(a0 , a1 , a2 , a3 , a4); } FP fp; }; }; template <> struct member_function_ptr_impl<6> { template struct impl { typedef RT result_type; impl(FP fp_) : fp(fp_) {} template RT operator()(Class& obj, A0 & a0 , A1 & a1 , A2 & a2 , A3 & a3 , A4 & a4 , A5 & a5) const { BOOST_PROTO_USE_GET_POINTER(); typedef typename proto::detail::class_member_traits::class_type class_type; return (BOOST_PROTO_GET_POINTER(class_type, obj)->*fp)(a0 , a1 , a2 , a3 , a4 , a5); } template RT operator()(Class* obj, A0 & a0 , A1 & a1 , A2 & a2 , A3 & a3 , A4 & a4 , A5 & a5) const { return (obj->*fp)(a0 , a1 , a2 , a3 , a4 , a5); } FP fp; }; }; template <> struct member_function_ptr_impl<7> { template struct impl { typedef RT result_type; impl(FP fp_) : fp(fp_) {} template RT operator()(Class& obj, A0 & a0 , A1 & a1 , A2 & a2 , A3 & a3 , A4 & a4 , A5 & a5 , A6 & a6) const { BOOST_PROTO_USE_GET_POINTER(); typedef typename proto::detail::class_member_traits::class_type class_type; return (BOOST_PROTO_GET_POINTER(class_type, obj)->*fp)(a0 , a1 , a2 , a3 , a4 , a5 , a6); } template RT operator()(Class* obj, A0 & a0 , A1 & a1 , A2 & a2 , A3 & a3 , A4 & a4 , A5 & a5 , A6 & a6) const { return (obj->*fp)(a0 , a1 , a2 , a3 , a4 , a5 , a6); } FP fp; }; }; template <> struct member_function_ptr_impl<8> { template struct impl { typedef RT result_type; impl(FP fp_) : fp(fp_) {} template RT operator()(Class& obj, A0 & a0 , A1 & a1 , A2 & a2 , A3 & a3 , A4 & a4 , A5 & a5 , A6 & a6 , A7 & a7) const { BOOST_PROTO_USE_GET_POINTER(); typedef typename proto::detail::class_member_traits::class_type class_type; return (BOOST_PROTO_GET_POINTER(class_type, obj)->*fp)(a0 , a1 , a2 , a3 , a4 , a5 , a6 , a7); } template RT operator()(Class* obj, A0 & a0 , A1 & a1 , A2 & a2 , A3 & a3 , A4 & a4 , A5 & a5 , A6 & a6 , A7 & a7) const { return (obj->*fp)(a0 , a1 , a2 , a3 , a4 , a5 , a6 , a7); } FP fp; }; }; template <> struct member_function_ptr_impl<9> { template struct impl { typedef RT result_type; impl(FP fp_) : fp(fp_) {} template RT operator()(Class& obj, A0 & a0 , A1 & a1 , A2 & a2 , A3 & a3 , A4 & a4 , A5 & a5 , A6 & a6 , A7 & a7 , A8 & a8) const { BOOST_PROTO_USE_GET_POINTER(); typedef typename proto::detail::class_member_traits::class_type class_type; return (BOOST_PROTO_GET_POINTER(class_type, obj)->*fp)(a0 , a1 , a2 , a3 , a4 , a5 , a6 , a7 , a8); } template RT operator()(Class* obj, A0 & a0 , A1 & a1 , A2 & a2 , A3 & a3 , A4 & a4 , A5 & a5 , A6 & a6 , A7 & a7 , A8 & a8) const { return (obj->*fp)(a0 , a1 , a2 , a3 , a4 , a5 , a6 , a7 , a8); } FP fp; }; }; template <> struct member_function_ptr_impl<10> { template struct impl { typedef RT result_type; impl(FP fp_) : fp(fp_) {} template RT operator()(Class& obj, A0 & a0 , A1 & a1 , A2 & a2 , A3 & a3 , A4 & a4 , A5 & a5 , A6 & a6 , A7 & a7 , A8 & a8 , A9 & a9) const { BOOST_PROTO_USE_GET_POINTER(); typedef typename proto::detail::class_member_traits::class_type class_type; return (BOOST_PROTO_GET_POINTER(class_type, obj)->*fp)(a0 , a1 , a2 , a3 , a4 , a5 , a6 , a7 , a8 , a9); } template RT operator()(Class* obj, A0 & a0 , A1 & a1 , A2 & a2 , A3 & a3 , A4 & a4 , A5 & a5 , A6 & a6 , A7 & a7 , A8 & a8 , A9 & a9) const { return (obj->*fp)(a0 , a1 , a2 , a3 , a4 , a5 , a6 , a7 , a8 , a9); } FP fp; }; };