| Line |   | 
|---|
| 1 | /*============================================================================= | 
|---|
| 2 |     Copyright (c) 2001-2003 Hartmut Kaiser | 
|---|
| 3 |     http://spirit.sourceforge.net/ | 
|---|
| 4 |  | 
|---|
| 5 |     Use, modification and distribution is subject to the Boost Software | 
|---|
| 6 |     License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at | 
|---|
| 7 |     http://www.boost.org/LICENSE_1_0.txt) | 
|---|
| 8 | =============================================================================*/ | 
|---|
| 9 | #if !defined(SPIRIT_VERSION_HPP) | 
|---|
| 10 | #define SPIRIT_VERSION_HPP | 
|---|
| 11 |  | 
|---|
| 12 | /////////////////////////////////////////////////////////////////////////////// | 
|---|
| 13 | // | 
|---|
| 14 | //  This checks, whether the used Boost library is at least V1.32.0 | 
|---|
| 15 | // | 
|---|
| 16 | /////////////////////////////////////////////////////////////////////////////// | 
|---|
| 17 | #include <boost/version.hpp> | 
|---|
| 18 |  | 
|---|
| 19 | #if BOOST_VERSION < 103200 | 
|---|
| 20 | #error "Spirit v1.8.x needs at least Boost V1.32.0 to compile successfully." | 
|---|
| 21 | #endif  | 
|---|
| 22 |  | 
|---|
| 23 | /////////////////////////////////////////////////////////////////////////////// | 
|---|
| 24 | // | 
|---|
| 25 | //  This is the version of the current Spirit distribution | 
|---|
| 26 | // | 
|---|
| 27 | /////////////////////////////////////////////////////////////////////////////// | 
|---|
| 28 | #define SPIRIT_VERSION 0x1803 | 
|---|
| 29 | #define SPIRIT_PIZZA_VERSION SPIRIT_DOUBLE_CHEESE  // :-) | 
|---|
| 30 |  | 
|---|
| 31 | #endif // defined(SPIRIT_VERSION_HPP) | 
|---|
       
      
      Note: See 
TracBrowser
        for help on using the repository browser.