/*============================================================================= 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_BIND_BIND_MEMBER_FUNCTION_HPP #define PHOENIX_BIND_BIND_MEMBER_FUNCTION_HPP #include #include #include #include namespace boost { namespace phoenix { template inline actor< typename as_composite< detail::function_eval<1> , detail::member_function_ptr<0, RT, RT(ClassT::*)()> , ClassA >::type> bind(RT(ClassT::*f)(), ClassA const& obj) { typedef detail::member_function_ptr<0, RT, RT(ClassT::*)()> fp_type; return compose >(fp_type(f), obj); } template inline actor< typename as_composite< detail::function_eval<1> , detail::member_function_ptr<0, RT, RT(ClassT::*)() const> , ClassA >::type> bind(RT(ClassT::*f)() const, ClassA const& obj) { typedef detail::member_function_ptr<0, RT, RT(ClassT::*)() const> fp_type; return compose >(fp_type(f), obj); } template inline actor< typename as_composite< detail::function_eval<1> , detail::member_function_ptr<0, RT, RT(ClassT::*)()> , actor > >::type> bind(RT(ClassT::*f)(), ClassT& obj) { typedef detail::member_function_ptr<0, RT, RT(ClassT::*)()> fp_type; return compose >( fp_type(f) , actor >(reference(obj))); } template inline actor< typename as_composite< detail::function_eval<1> , detail::member_function_ptr<0, RT, RT(ClassT::*)() const> , actor > >::type> bind(RT(ClassT::*f)() const, ClassT& obj) { typedef detail::member_function_ptr<0, RT, RT(ClassT::*)() const> fp_type; return compose >( fp_type(f) , actor >(reference(obj))); } // Bring in the rest of the function binders #include }} #endif