// file : odb/boost/version.hxx.in // license : GNU GPL v2; see accompanying LICENSE file #ifndef LIBODB_BOOST_VERSION // Note: using the version macro itself. // New numeric version format is AAAAABBBBBCCCCCDDDE where: // // AAAAA - major version number // BBBBB - minor version number // CCCCC - bugfix version number // DDD - alpha / beta (DDD + 500) version number // E - final (0) / snapshot (1) // // When DDDE is not 0, 1 is subtracted from AAAAABBBBBCCCCC. For example: // // Version AAAAABBBBBCCCCCDDDE // // 0.1.0 0000000001000000000 // 0.1.2 0000000001000020000 // 1.2.3 0000100002000030000 // 2.2.0-a.1 0000200001999990010 // 3.0.0-b.2 0000299999999995020 // 2.2.0-a.1.z 0000200001999990011 // #define LIBODB_BOOST_VERSION_FULL $libodb_boost.version.project_number$ULL #define LIBODB_BOOST_VERSION_STR "$libodb_boost.version.project$" #define LIBODB_BOOST_VERSION_ID "$libodb_boost.version.project_id$" #define LIBODB_BOOST_VERSION_MAJOR $libodb_boost.version.major$ #define LIBODB_BOOST_VERSION_MINOR $libodb_boost.version.minor$ #define LIBODB_BOOST_VERSION_PATCH $libodb_boost.version.patch$ #define LIBODB_BOOST_PRE_RELEASE $libodb_boost.version.pre_release$ #define LIBODB_BOOST_SNAPSHOT $libodb_boost.version.snapshot_sn$ULL #define LIBODB_BOOST_SNAPSHOT_ID "$libodb_boost.version.snapshot_id$" #include $libodb.check(LIBODB_VERSION_FULL, LIBODB_SNAPSHOT)$ // Old/deprecated numeric version format is AABBCCDD where: // // AA - major version number // BB - minor version number // CC - bugfix version number // DD - alpha / beta (DD + 50) version number // // When DD is not 00, 1 is subtracted from AABBCC. For example: // // Version AABBCCDD // 2.0.0 02000000 // 2.1.0 02010000 // 2.1.1 02010100 // 2.2.0.a1 02019901 // 3.0.0.b2 02999952 // // ODB Boost interface version: odb interface version plus the Boost interface // version. // // NOTE: also hardcoded in *.options. // #define ODB_BOOST_VERSION 2047600 #define ODB_BOOST_VERSION_STR "2.5.0-b.26" // libodb-boost version: odb interface version plus the bugfix version. Note // that LIBODB_BOOST_VERSION is always greater or equal to ODB_BOOST_VERSION // since if the Boost interface virsion is incremented then the bugfix version // must be incremented as well. // #define LIBODB_BOOST_VERSION 2049976 #endif // LIBODB_BOOST_VERSION