cpp_version.hpp 1.1 KB

12345678910111213141516171819202122232425
  1. /*=============================================================================
  2. Boost.Wave: A Standard compliant C++ preprocessor library
  3. http://www.boost.org/
  4. Copyright (c) 2001-2012 Hartmut Kaiser. Distributed under the Boost
  5. Software License, Version 1.0. (See accompanying file
  6. LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  7. =============================================================================*/
  8. #if !defined(CPP_VERSION_HPP_CE4FE67F_63F9_468D_8364_C855F89D3C5D_INCLUDED)
  9. #define CPP_VERSION_HPP_CE4FE67F_63F9_468D_8364_C855F89D3C5D_INCLUDED
  10. #include <boost/wave/wave_version.hpp>
  11. #define CPP_VERSION_MAJOR BOOST_WAVE_VERSION_MAJOR
  12. #define CPP_VERSION_MINOR BOOST_WAVE_VERSION_MINOR
  13. #define CPP_VERSION_SUBMINOR BOOST_WAVE_VERSION_SUBMINOR
  14. #define CPP_VERSION_FULL BOOST_WAVE_VERSION
  15. #define CPP_VERSION_FULL_STR BOOST_PP_STRINGIZE(CPP_VERSION_FULL)
  16. #define CPP_VERSION_DATE 20120523L
  17. #define CPP_VERSION_DATE_STR "20120523"
  18. #endif // !defined(CPP_VERSION_HPP_CE4FE67F_63F9_468D_8364_C855F89D3C5D_INCLUDED)