is_future_type.hpp 523 B

123456789101112131415161718192021
  1. // (C) Copyright 2008-10 Anthony Williams
  2. // (C) Copyright 2011-2015 Vicente J. Botet Escriba
  3. //
  4. // Distributed under the Boost Software License, Version 1.0. (See
  5. // accompanying file LICENSE_1_0.txt or copy at
  6. // http://www.boost.org/LICENSE_1_0.txt)
  7. #ifndef BOOST_THREAD_FUTURES_IS_FUTURE_TYPE_HPP
  8. #define BOOST_THREAD_FUTURES_IS_FUTURE_TYPE_HPP
  9. #include <boost/type_traits/integral_constant.hpp>
  10. namespace boost
  11. {
  12. template<typename T>
  13. struct is_future_type : false_type
  14. {
  15. };
  16. }
  17. #endif // header