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