summaryrefslogtreecommitdiff
path: root/odb-tests/common/no-id/test.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'odb-tests/common/no-id/test.hxx')
-rw-r--r--odb-tests/common/no-id/test.hxx21
1 files changed, 21 insertions, 0 deletions
diff --git a/odb-tests/common/no-id/test.hxx b/odb-tests/common/no-id/test.hxx
new file mode 100644
index 0000000..c5b5c65
--- /dev/null
+++ b/odb-tests/common/no-id/test.hxx
@@ -0,0 +1,21 @@
+// file : common/no-id/test.hxx
+// license : GNU GPL v2; see accompanying LICENSE file
+
+#ifndef TEST_HXX
+#define TEST_HXX
+
+#include <string>
+
+#include <odb/core.hxx>
+
+#pragma db object no_id
+struct object
+{
+ object () {}
+ object (unsigned long n, const std::string& s): num (n), str (s) {}
+
+ unsigned long num;
+ std::string str;
+};
+
+#endif // TEST_HXX