is_member_function_pointer.hpp 825 B

1234567891011121314151617181920212223242526
  1. // (C) Copyright Dave Abrahams, Steve Cleary, Beman Dawes, Howard
  2. // Hinnant & John Maddock 2000.
  3. // Use, modification and distribution are subject to the Boost Software License,
  4. // Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
  5. // http://www.boost.org/LICENSE_1_0.txt).
  6. //
  7. // See http://www.boost.org/libs/type_traits for most recent version including documentation.
  8. #ifndef BOOST_TT_IS_MEMBER_FUNCTION_POINTER_HPP_INCLUDED
  9. #define BOOST_TT_IS_MEMBER_FUNCTION_POINTER_HPP_INCLUDED
  10. #include <boost/type_traits/detail/config.hpp>
  11. #ifdef BOOST_TT_HAS_ASCCURATE_IS_FUNCTION
  12. #include <boost/type_traits/detail/is_member_function_pointer_cxx_11.hpp>
  13. #else
  14. #include <boost/type_traits/detail/is_member_function_pointer_cxx_03.hpp>
  15. #endif
  16. #endif // BOOST_TT_IS_MEMBER_FUNCTION_POINTER_HPP_INCLUDED