aboutsummaryrefslogtreecommitdiff
path: root/odb/boost/version.hxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2011-01-31 10:53:27 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2011-01-31 10:53:27 +0200
commit6a07b88cdf6419440b19e7b7dbc9231519c32c62 (patch)
tree995bdfbc256dd9ea444992a28d5750c8d0196d40 /odb/boost/version.hxx
Initial Boost profile template
Diffstat (limited to 'odb/boost/version.hxx')
-rw-r--r--odb/boost/version.hxx44
1 files changed, 44 insertions, 0 deletions
diff --git a/odb/boost/version.hxx b/odb/boost/version.hxx
new file mode 100644
index 0000000..5a3d102
--- /dev/null
+++ b/odb/boost/version.hxx
@@ -0,0 +1,44 @@
+// file : odb/boost/version.hxx
+// author : Boris Kolpackov <boris@codesynthesis.com>
+// copyright : Copyright (c) 2005-2011 Code Synthesis Tools CC
+// license : GNU GPL v2; see accompanying LICENSE file
+
+#ifndef ODB_BOOST_VERSION_HXX
+#define ODB_BOOST_VERSION_HXX
+
+#include <odb/pre.hxx>
+
+#include <odb/version.hxx>
+
+// 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
+//
+
+// Check that we have compatible ODB version.
+//
+#if ODB_VERSION != 10100
+# error incompatible odb interface version detected
+#endif
+
+// libodb-boost version: odb interface version plus the bugfix
+// version.
+//
+#define LIBODB_BOOST_VERSION 1010000
+#define LIBODB_BOOST_VERSION_STR "1.1.0"
+
+#include <odb/post.hxx>
+
+#endif // ODB_BOOST_VERSION_HXX