Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/boost_1_34_1/boost/version.hpp @ 66

Last change on this file since 66 was 29, checked in by landauf, 16 years ago

updated boost from 1_33_1 to 1_34_1

File size: 1.2 KB
Line 
1//  Boost version.hpp configuration header file  ------------------------------//
2
3//  (C) Copyright John maddock 1999. Distributed under the Boost
4//  Software License, Version 1.0. (See accompanying file
5//  LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
6
7//  See http://www.boost.org/libs/config for documentation
8
9#ifndef BOOST_VERSION_HPP
10#define BOOST_VERSION_HPP
11
12//
13//  Caution, this is the only boost header that is guarenteed
14//  to change with every boost release, including this header
15//  will cause a recompile every time a new boost version is
16//  released.
17//
18//  BOOST_VERSION % 100 is the sub-minor version
19//  BOOST_VERSION / 100 % 1000 is the minor version
20//  BOOST_VERSION / 100000 is the major version
21
22#define BOOST_VERSION 103401
23
24//
25//  BOOST_LIB_VERSION must be defined to be the same as BOOST_VERSION
26//  but as a *string* in the form "x_y" where x is the major version
27//  number and y is the minor version number, or in the form "x_y_z"
28//  where z is the patch version number when the patch version number
29//  is not zero (z > 0).  This is used by <config/auto_link.hpp> to
30//  select which library version to link to.
31
32#define BOOST_LIB_VERSION "1_34_1"
33
34#endif
35
36
37
Note: See TracBrowser for help on using the repository browser.