Chris@16: // Boost version.hpp configuration header file ------------------------------// Chris@16: Chris@16: // (C) Copyright John maddock 1999. Distributed under the Boost Chris@16: // Software License, Version 1.0. (See accompanying file Chris@16: // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) Chris@16: Chris@16: // See http://www.boost.org/libs/config for documentation Chris@16: Chris@16: #ifndef BOOST_VERSION_HPP Chris@16: #define BOOST_VERSION_HPP Chris@16: Chris@16: // Chris@101: // Caution: this is the only Boost header that is guaranteed Chris@101: // to change with every Boost release. Including this header Chris@101: // will cause a recompile every time a new Boost version is Chris@101: // used. Chris@16: // Chris@16: // BOOST_VERSION % 100 is the patch level Chris@16: // BOOST_VERSION / 100 % 1000 is the minor version Chris@16: // BOOST_VERSION / 100000 is the major version Chris@16: Chris@101: #define BOOST_VERSION 105800 Chris@16: Chris@16: // Chris@16: // BOOST_LIB_VERSION must be defined to be the same as BOOST_VERSION Chris@16: // but as a *string* in the form "x_y[_z]" where x is the major version Chris@16: // number, y is the minor version number, and z is the patch level if not 0. Chris@16: // This is used by to select which library version to link to. Chris@16: Chris@101: #define BOOST_LIB_VERSION "1_58" Chris@16: Chris@16: #endif