is_error_condition_enum.hpp 722 B

123456789101112131415161718192021222324252627282930
  1. #ifndef BOOST_SYSTEM_IS_ERROR_CONDITION_ENUM_HPP_INCLUDED
  2. #define BOOST_SYSTEM_IS_ERROR_CONDITION_ENUM_HPP_INCLUDED
  3. // Copyright Beman Dawes 2006, 2007
  4. // Copyright Christoper Kohlhoff 2007
  5. // Copyright Peter Dimov 2017, 2018
  6. //
  7. // Distributed under the Boost Software License, Version 1.0. (See accompanying
  8. // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  9. //
  10. // See library home page at http://www.boost.org/libs/system
  11. namespace boost
  12. {
  13. namespace system
  14. {
  15. class error_condition;
  16. template<class T> struct is_error_condition_enum
  17. {
  18. static const bool value = false;
  19. };
  20. } // namespace system
  21. } // namespace boost
  22. #endif // #ifndef BOOST_SYSTEM_IS_ERROR_CONDITION_ENUM_HPP_INCLUDED