⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 bind_member_function.hpp

📁 Boost provides free peer-reviewed portable C++ source libraries. We emphasize libraries that work
💻 HPP
字号:
/*=============================================================================    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 <boost/spirit/home/phoenix/core/reference.hpp>#include <boost/spirit/home/phoenix/core/compose.hpp>#include <boost/spirit/home/phoenix/core/detail/function_eval.hpp>#include <boost/spirit/home/phoenix/bind/detail/member_function_ptr.hpp>namespace boost { namespace phoenix{    template <typename RT, typename ClassT, typename ClassA>    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<detail::function_eval<1> >(fp_type(f), obj);    }    template <typename RT, typename ClassT, typename ClassA>    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<detail::function_eval<1> >(fp_type(f), obj);    }    template <typename RT, typename ClassT>    inline actor<        typename as_composite<            detail::function_eval<1>          , detail::member_function_ptr<0, RT, RT(ClassT::*)()>          , actor<reference<ClassT> >        >::type>    bind(RT(ClassT::*f)(), ClassT& obj)    {        typedef detail::member_function_ptr<0, RT, RT(ClassT::*)()> fp_type;        return compose<detail::function_eval<1> >(            fp_type(f)          , actor<reference<ClassT> >(reference<ClassT>(obj)));    }    template <typename RT, typename ClassT>    inline actor<        typename as_composite<            detail::function_eval<1>          , detail::member_function_ptr<0, RT, RT(ClassT::*)() const>          , actor<reference<ClassT> >        >::type>    bind(RT(ClassT::*f)() const, ClassT& obj)    {        typedef detail::member_function_ptr<0, RT, RT(ClassT::*)() const> fp_type;        return compose<detail::function_eval<1> >(            fp_type(f)          , actor<reference<ClassT> >(reference<ClassT>(obj)));    }    //  Bring in the rest of the function binders    #include <boost/spirit/home/phoenix/bind/detail/bind_member_function.hpp>}}#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -