beos.h 1001 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. /*
  2. Copyright Rene Rivera 2008-2015
  3. Distributed under the Boost Software License, Version 1.0.
  4. (See accompanying file LICENSE_1_0.txt or copy at
  5. http://www.boost.org/LICENSE_1_0.txt)
  6. */
  7. #ifndef BOOST_PREDEF_OS_BEOS_H
  8. #define BOOST_PREDEF_OS_BEOS_H
  9. #include <boost/predef/version_number.h>
  10. #include <boost/predef/make.h>
  11. /*`
  12. [heading `BOOST_OS_BEOS`]
  13. [@http://en.wikipedia.org/wiki/BeOS BeOS] operating system.
  14. [table
  15. [[__predef_symbol__] [__predef_version__]]
  16. [[`__BEOS__`] [__predef_detection__]]
  17. ]
  18. */
  19. #define BOOST_OS_BEOS BOOST_VERSION_NUMBER_NOT_AVAILABLE
  20. #if !defined(BOOST_PREDEF_DETAIL_OS_DETECTED) && ( \
  21. defined(__BEOS__) \
  22. )
  23. # undef BOOST_OS_BEOS
  24. # define BOOST_OS_BEOS BOOST_VERSION_NUMBER_AVAILABLE
  25. #endif
  26. #if BOOST_OS_BEOS
  27. # define BOOST_OS_BEOS_AVAILABLE
  28. # include <boost/predef/detail/os_detected.h>
  29. #endif
  30. #define BOOST_OS_BEOS_NAME "BeOS"
  31. #endif
  32. #include <boost/predef/detail/test.h>
  33. BOOST_PREDEF_DECLARE_TEST(BOOST_OS_BEOS,BOOST_OS_BEOS_NAME)