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