summaryrefslogtreecommitdiff
path: root/odb-tests/common/erase-query/test.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'odb-tests/common/erase-query/test.hxx')
-rw-r--r--odb-tests/common/erase-query/test.hxx46
1 files changed, 46 insertions, 0 deletions
diff --git a/odb-tests/common/erase-query/test.hxx b/odb-tests/common/erase-query/test.hxx
new file mode 100644
index 0000000..9e73f12
--- /dev/null
+++ b/odb-tests/common/erase-query/test.hxx
@@ -0,0 +1,46 @@
+// file : common/erase-query/test.hxx
+// license : GNU GPL v2; see accompanying LICENSE file
+
+#ifndef TEST_HXX
+#define TEST_HXX
+
+#include <vector>
+
+#include <odb/core.hxx>
+
+struct object2;
+
+#pragma db object
+struct object
+{
+ object (unsigned long id)
+ : id_ (id), o1 (0), o2 (0)
+ {
+ }
+
+ object ()
+ : o1 (0), o2 (0)
+ {
+ }
+
+ #pragma db id
+ unsigned long id_;
+
+ std::vector<int> v;
+
+ int num;
+
+ object* o1;
+ object2* o2;
+};
+
+#pragma db object
+struct object2
+{
+ #pragma db id auto
+ unsigned long id_;
+
+ int num;
+};
+
+#endif // TEST_HXX