sl@0: /*============================================================================= sl@0: Copyright (c) 2001-2003 Hartmut Kaiser sl@0: http://spirit.sourceforge.net/ sl@0: sl@0: Use, modification and distribution is subject to the Boost Software sl@0: License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at sl@0: http://www.boost.org/LICENSE_1_0.txt) sl@0: =============================================================================*/ sl@0: #if !defined(SPIRIT_VERSION_HPP) sl@0: #define SPIRIT_VERSION_HPP sl@0: sl@0: /////////////////////////////////////////////////////////////////////////////// sl@0: // sl@0: // This checks, whether the used Boost library is at least V1.32.0 sl@0: // sl@0: /////////////////////////////////////////////////////////////////////////////// sl@0: #include sl@0: sl@0: #if BOOST_VERSION < 103200 sl@0: #error "Spirit v1.8.x needs at least Boost V1.32.0 to compile successfully." sl@0: #endif sl@0: sl@0: /////////////////////////////////////////////////////////////////////////////// sl@0: // sl@0: // This is the version of the current Spirit distribution sl@0: // sl@0: /////////////////////////////////////////////////////////////////////////////// sl@0: #define SPIRIT_VERSION 0x1804 sl@0: #define SPIRIT_PIZZA_VERSION SPIRIT_DOUBLE_CHEESE // :-) sl@0: sl@0: #endif // defined(SPIRIT_VERSION_HPP)