aboutsummaryrefslogtreecommitdiff
path: root/common/threads/test.hxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2010-09-13 10:42:46 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2010-09-13 10:42:46 +0200
commita9d527ffd7e4a2222d5e80c8110f092af0cb5a74 (patch)
treecd190434be960f8bbb8547619b8b97265d844ed9 /common/threads/test.hxx
parentc85f0af82c3abf2e7d2dfa76351a59d9884395c0 (diff)
Change pragma syntax
Change odb pragma namespace to db. Use qualifiers (object, value, and member) to specify type/member name. Add support for mapping C++ types to db types.
Diffstat (limited to 'common/threads/test.hxx')
-rw-r--r--common/threads/test.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/threads/test.hxx b/common/threads/test.hxx
index d02fdfd..b9f7777 100644
--- a/common/threads/test.hxx
+++ b/common/threads/test.hxx
@@ -10,7 +10,7 @@
#include <odb/core.hxx>
-#pragma odb object
+#pragma db object
struct object
{
object (unsigned long id, const std::string& str)
@@ -22,7 +22,7 @@ struct object
{
}
- #pragma odb id
+ #pragma db id
unsigned long id_;
std::string str_;