summaryrefslogtreecommitdiff
path: root/odb-tests/sqlite/transaction/test.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'odb-tests/sqlite/transaction/test.hxx')
-rw-r--r--odb-tests/sqlite/transaction/test.hxx26
1 files changed, 26 insertions, 0 deletions
diff --git a/odb-tests/sqlite/transaction/test.hxx b/odb-tests/sqlite/transaction/test.hxx
new file mode 100644
index 0000000..bfb981b
--- /dev/null
+++ b/odb-tests/sqlite/transaction/test.hxx
@@ -0,0 +1,26 @@
+// file : sqlite/transaction/test.hxx
+// license : GNU GPL v2; see accompanying LICENSE file
+
+#ifndef TEST_HXX
+#define TEST_HXX
+
+#include <odb/core.hxx>
+#include <odb/lazy-ptr.hxx>
+
+#pragma db object
+struct object1
+{
+ #pragma db id
+ unsigned long id_;
+};
+
+#pragma db object
+struct object
+{
+ #pragma db id auto
+ unsigned long id_;
+
+ odb::lazy_ptr<object1> p;
+};
+
+#endif // TEST_HXX