os/ossrv/ossrv_pub/boost_apis/boost/version.hpp
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
//  Boost version.hpp configuration header file  ------------------------------//
sl@0
     2
sl@0
     3
//  (C) Copyright John maddock 1999. Distributed under the Boost
sl@0
     4
//  Software License, Version 1.0. (See accompanying file
sl@0
     5
//  LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
sl@0
     6
sl@0
     7
//  See http://www.boost.org/libs/config for documentation
sl@0
     8
sl@0
     9
#ifndef BOOST_VERSION_HPP
sl@0
    10
#define BOOST_VERSION_HPP
sl@0
    11
sl@0
    12
//
sl@0
    13
//  Caution, this is the only boost header that is guarenteed
sl@0
    14
//  to change with every boost release, including this header
sl@0
    15
//  will cause a recompile every time a new boost version is
sl@0
    16
//  released.
sl@0
    17
//
sl@0
    18
//  BOOST_VERSION % 100 is the sub-minor version
sl@0
    19
//  BOOST_VERSION / 100 % 1000 is the minor version
sl@0
    20
//  BOOST_VERSION / 100000 is the major version
sl@0
    21
sl@0
    22
#define BOOST_VERSION 103400
sl@0
    23
sl@0
    24
//
sl@0
    25
//  BOOST_LIB_VERSION must be defined to be the same as BOOST_VERSION
sl@0
    26
//  but as a *string* in the form "x_y" where x is the major version
sl@0
    27
//  number and y is the minor version number.  This is used by
sl@0
    28
//  <config/auto_link.hpp> to select which library version to link to.
sl@0
    29
sl@0
    30
#define BOOST_LIB_VERSION "1_34"
sl@0
    31
sl@0
    32
#endif
sl@0
    33
sl@0
    34
sl@0
    35