aboutsummaryrefslogtreecommitdiff
path: root/odb/oracle/version.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'odb/oracle/version.hxx')
-rw-r--r--odb/oracle/version.hxx45
1 files changed, 45 insertions, 0 deletions
diff --git a/odb/oracle/version.hxx b/odb/oracle/version.hxx
new file mode 100644
index 0000000..be4ac32
--- /dev/null
+++ b/odb/oracle/version.hxx
@@ -0,0 +1,45 @@
+// file : odb/oracle/version.hxx
+// author : Constantin Michael <constantin@codesynthesis.com>
+// copyright : Copyright (c) 2005-2011 Code Synthesis Tools CC
+// license : ODB NCUEL; see accompanying LICENSE file
+
+#ifndef ODB_ORACLE_VERSION_HXX
+#define ODB_ORAClE_VERSION_HXX
+
+#include <odb/pre.hxx>
+
+#include <odb/oracle/details/config.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 != 10501
+# error incompatible odb interface version detected
+#endif
+
+// libodb-oracle version: odb interface version plus the bugfix
+// version.
+//
+#define LIBODB_ORACLE_VERSION 1059901
+#define LIBODB_ORACLE_VERSION_STR "1.6.0.a1"
+
+#include <odb/post.hxx>
+
+#endif // ODB_ORACLE_VERSION_HXX