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