roguewave.h 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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_LIBRARY_STD_ROGUEWAVE_H
  8. #define BOOST_PREDEF_LIBRARY_STD_ROGUEWAVE_H
  9. #include <boost/predef/library/std/_prefix.h>
  10. #include <boost/predef/version_number.h>
  11. #include <boost/predef/make.h>
  12. /*`
  13. [heading `BOOST_LIB_STD_RW`]
  14. [@http://stdcxx.apache.org/ Roguewave] Standard C++ library.
  15. If available version number as major, minor, and patch.
  16. [table
  17. [[__predef_symbol__] [__predef_version__]]
  18. [[`__STD_RWCOMPILER_H__`] [__predef_detection__]]
  19. [[`_RWSTD_VER`] [__predef_detection__]]
  20. [[`_RWSTD_VER`] [V.R.P]]
  21. ]
  22. */
  23. #define BOOST_LIB_STD_RW BOOST_VERSION_NUMBER_NOT_AVAILABLE
  24. #if defined(__STD_RWCOMPILER_H__) || defined(_RWSTD_VER)
  25. # undef BOOST_LIB_STD_RW
  26. # if defined(_RWSTD_VER)
  27. # if _RWSTD_VER < 0x010000
  28. # define BOOST_LIB_STD_RW BOOST_PREDEF_MAKE_0X_VVRRP(_RWSTD_VER)
  29. # else
  30. # define BOOST_LIB_STD_RW BOOST_PREDEF_MAKE_0X_VVRRPP(_RWSTD_VER)
  31. # endif
  32. # else
  33. # define BOOST_LIB_STD_RW BOOST_VERSION_NUMBER_AVAILABLE
  34. # endif
  35. #endif
  36. #if BOOST_LIB_STD_RW
  37. # define BOOST_LIB_STD_RW_AVAILABLE
  38. #endif
  39. #define BOOST_LIB_STD_RW_NAME "Roguewave"
  40. #endif
  41. #include <boost/predef/detail/test.h>
  42. BOOST_PREDEF_DECLARE_TEST(BOOST_LIB_STD_RW,BOOST_LIB_STD_RW_NAME)