123456789101112131415161718192021222324252627282930313233343536373839 |
- #ifndef BOOST_FUNCTION_EPILOGUE_HPP
- #define BOOST_FUNCTION_EPILOGUE_HPP
- #if !defined(BOOST_FUNCTION_NO_FUNCTION_TYPE_SYNTAX)
- namespace boost
- {
- namespace _bi
- {
- template<class R, class F, class L> class bind_t;
- }
- template<class S, class R, class F, class L> bool operator==( function<S> const& f, _bi::bind_t<R, F, L> const& b )
- {
- return f.contains( b );
- }
- template<class S, class R, class F, class L> bool operator!=( function<S> const& f, _bi::bind_t<R, F, L> const& b )
- {
- return !f.contains( b );
- }
- }
- #endif
- #endif
|