epoc32/include/stdapis/boost/serialization/version.hpp
branchSymbian2
changeset 3 e1b950c65cb4
parent 2 2fe1408b6811
child 4 837f303aceeb
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/epoc32/include/stdapis/boost/serialization/version.hpp	Wed Mar 31 12:27:01 2010 +0100
     1.3 @@ -0,0 +1,35 @@
     1.4 +//  Boost version.hpp configuration header file  ------------------------------//
     1.5 +
     1.6 +//  (C) Copyright John maddock 1999. Distributed under the Boost
     1.7 +//  Software License, Version 1.0. (See accompanying file
     1.8 +//  LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
     1.9 +
    1.10 +//  See http://www.boost.org/libs/config for documentation
    1.11 +
    1.12 +#ifndef BOOST_VERSION_HPP
    1.13 +#define BOOST_VERSION_HPP
    1.14 +
    1.15 +//
    1.16 +//  Caution, this is the only boost header that is guarenteed
    1.17 +//  to change with every boost release, including this header
    1.18 +//  will cause a recompile every time a new boost version is
    1.19 +//  released.
    1.20 +//
    1.21 +//  BOOST_VERSION % 100 is the sub-minor version
    1.22 +//  BOOST_VERSION / 100 % 1000 is the minor version
    1.23 +//  BOOST_VERSION / 100000 is the major version
    1.24 +
    1.25 +#define BOOST_VERSION 103400
    1.26 +
    1.27 +//
    1.28 +//  BOOST_LIB_VERSION must be defined to be the same as BOOST_VERSION
    1.29 +//  but as a *string* in the form "x_y" where x is the major version
    1.30 +//  number and y is the minor version number.  This is used by
    1.31 +//  <config/auto_link.hpp> to select which library version to link to.
    1.32 +
    1.33 +#define BOOST_LIB_VERSION "1_34"
    1.34 +
    1.35 +#endif
    1.36 +
    1.37 +
    1.38 +