aboutsummaryrefslogtreecommitdiff
path: root/boost/oracle/template/test.hxx
diff options
context:
space:
mode:
authorConstantin Michael <constantin@codesynthesis.com>2011-11-08 13:42:45 +0200
committerConstantin Michael <constantin@codesynthesis.com>2011-11-08 14:46:52 +0200
commit20c2f6cde170e1a8703858e17530fcf68e4efbe4 (patch)
treeeedd06f8b8a0caf9c5699611d5945297120f6ee5 /boost/oracle/template/test.hxx
parent1c9bf613aba99ca70a53b5f8f90e49225c7a56f1 (diff)
Add tests for Oracle support of the Boost profile
Diffstat (limited to 'boost/oracle/template/test.hxx')
-rw-r--r--boost/oracle/template/test.hxx27
1 files changed, 27 insertions, 0 deletions
diff --git a/boost/oracle/template/test.hxx b/boost/oracle/template/test.hxx
new file mode 100644
index 0000000..2bb9244
--- /dev/null
+++ b/boost/oracle/template/test.hxx
@@ -0,0 +1,27 @@
+// file : boost/oracle/template/test.hxx
+// author : Boris Kolpackov <boris@codesynthesis.com>
+// copyright : Copyright (c) 2009-2011 Code Synthesis Tools CC
+// license : GNU GPL v2; see accompanying LICENSE file
+
+#ifndef TEST_HXX
+#define TEST_HXX
+
+#include <odb/core.hxx>
+
+#pragma db object
+struct object
+{
+ object (unsigned long id)
+ : id_ (id)
+ {
+ }
+
+ object ()
+ {
+ }
+
+ #pragma db id
+ unsigned long id_;
+};
+
+#endif // TEST_HXX