File indexing completed on 2025-01-18 09:30:54
0001
0002
0003 #ifndef BOOST_FUNCTION_EPILOGUE_HPP
0004 #define BOOST_FUNCTION_EPILOGUE_HPP
0005
0006
0007
0008
0009
0010
0011
0012
0013 #if !defined(BOOST_FUNCTION_NO_FUNCTION_TYPE_SYNTAX)
0014
0015 namespace boost
0016 {
0017
0018 namespace _bi
0019 {
0020
0021 template<class R, class F, class L> class bind_t;
0022
0023 }
0024
0025 template<class S, class R, class F, class L> bool operator==( function<S> const& f, _bi::bind_t<R, F, L> const& b )
0026 {
0027 return f.contains( b );
0028 }
0029
0030 template<class S, class R, class F, class L> bool operator!=( function<S> const& f, _bi::bind_t<R, F, L> const& b )
0031 {
0032 return !f.contains( b );
0033 }
0034
0035 }
0036
0037 #endif
0038
0039 #endif