aboutsummaryrefslogtreecommitdiff
path: root/boost/pgsql/template/test.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'boost/pgsql/template/test.hxx')
-rw-r--r--boost/pgsql/template/test.hxx27
1 files changed, 27 insertions, 0 deletions
diff --git a/boost/pgsql/template/test.hxx b/boost/pgsql/template/test.hxx
new file mode 100644
index 0000000..fd4a879
--- /dev/null
+++ b/boost/pgsql/template/test.hxx
@@ -0,0 +1,27 @@
+// file : boost/pgsql/template/test.hxx
+// author : Constantin Michael <constantin@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