aboutsummaryrefslogtreecommitdiff
path: root/boost/pgsql/template/test.hxx
diff options
context:
space:
mode:
authorConstantin Michael <constantin@codesynthesis.com>2011-07-21 23:17:02 +0200
committerConstantin Michael <constantin@codesynthesis.com>2011-07-21 23:17:02 +0200
commitf5a9d565dad28df86490b392cd5b4d763ab2a248 (patch)
treece22e899151902538b5ef38a9c24308ebca8a6dd /boost/pgsql/template/test.hxx
parentb038ab0cd6335f3e4ec075d1e21f5d7bb89e3ffb (diff)
Add Boost profile tests for PostgreSQL
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