1 // Boost version.hpp configuration header file ------------------------------//
\r
3 // (C) Copyright John maddock 1999. Distributed under the Boost
\r
4 // Software License, Version 1.0. (See accompanying file
\r
5 // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
\r
7 // See http://www.boost.org/libs/config for documentation
\r
9 #ifndef BOOST_VERSION_HPP
\r
10 #define BOOST_VERSION_HPP
\r
13 // Caution, this is the only boost header that is guarenteed
\r
14 // to change with every boost release, including this header
\r
15 // will cause a recompile every time a new boost version is
\r
18 // BOOST_VERSION % 100 is the patch level
\r
19 // BOOST_VERSION / 100 % 1000 is the minor version
\r
20 // BOOST_VERSION / 100000 is the major version
\r
22 #define BOOST_VERSION 104200
\r
25 // BOOST_LIB_VERSION must be defined to be the same as BOOST_VERSION
\r
26 // but as a *string* in the form "x_y[_z]" where x is the major version
\r
27 // number, y is the minor version number, and z is the patch level if not 0.
\r
28 // This is used by <config/auto_link.hpp> to select which library version to link to.
\r
30 #define BOOST_LIB_VERSION "1_42"
\r