idl_version.hpp 997 B

1234567891011121314151617181920212223
  1. /*=============================================================================
  2. Boost.Wave: A Standard compliant C++ preprocessor library
  3. Sample: IDL oriented preprocessor
  4. http://www.boost.org/
  5. Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost
  6. Software License, Version 1.0. (See accompanying file
  7. LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  8. =============================================================================*/
  9. #if !defined(IDL_VERSION_HPP_780C1190_3107_440B_B303_B687A449749B_INCLUDED)
  10. #define IDL_VERSION_HPP_780C1190_3107_440B_B303_B687A449749B_INCLUDED
  11. #include <boost/wave/wave_version.hpp>
  12. #define IDL_VERSION_MAJOR BOOST_WAVE_VERSION_MAJOR
  13. #define IDL_VERSION_MINOR BOOST_WAVE_VERSION_MINOR
  14. #define IDL_VERSION_SUBMINOR BOOST_WAVE_VERSION_SUBMINOR
  15. #define IDL_VERSION_DATE 20050117L
  16. #endif // !defined(IDL_VERSION_HPP_780C1190_3107_440B_B303_B687A449749B_INCLUDED)