summaryrefslogtreecommitdiff
path: root/oracle/template/test.hxx
diff options
context:
space:
mode:
authorConstantin Michael <constantin@codesynthesis.com>2011-09-02 14:15:46 +0200
committerConstantin Michael <constantin@codesynthesis.com>2011-10-21 11:47:16 +0200
commit84f9ce9150abfb5f4424d8e94fefa932af3172fa (patch)
tree5205a6d141793c190fe1e0cacda2b5f1bac6b06f /oracle/template/test.hxx
parent7e70aa043b7a2482590b0e5459284d2c848eb474 (diff)
Add infrastructure for oracle development testing and implement native test
Diffstat (limited to 'oracle/template/test.hxx')
-rw-r--r--oracle/template/test.hxx27
1 files changed, 27 insertions, 0 deletions
diff --git a/oracle/template/test.hxx b/oracle/template/test.hxx
new file mode 100644
index 0000000..7e8f699
--- /dev/null
+++ b/oracle/template/test.hxx
@@ -0,0 +1,27 @@
+// file : oracle/template/test.hxx
+// author : Constantin Michael <constantin@codesynthesis.com>
+// copyright : Copyright (c) 2009-2011 Code Synthesis Tools CC
+// license : ODB NCUEL; 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