aboutsummaryrefslogtreecommitdiff
path: root/odb/context.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'odb/context.hxx')
-rw-r--r--odb/context.hxx24
1 files changed, 24 insertions, 0 deletions
diff --git a/odb/context.hxx b/odb/context.hxx
index 69c5d48..3a09805 100644
--- a/odb/context.hxx
+++ b/odb/context.hxx
@@ -78,6 +78,17 @@ public:
//
public:
+ // Check whether the type is a wrapper. Return the wrapped type if
+ // it is a wrapper and NULL otherwise.
+ //
+ static semantics::type*
+ wrapper (semantics::type& t)
+ {
+ return t.count ("wrapper") && t.get<bool> ("wrapper")
+ ? t.get<semantics::type*> ("wrapper-type")
+ : 0;
+ }
+
// Composite value type is a class type that was explicitly marked
// as value type and there was no database type mapping provided for
// it by the user (specifying the database type makes the value type
@@ -102,6 +113,19 @@ public:
return c != 0 && comp_value (*c) ? c : 0;
}
+ // As above but also "sees through" wrappers.
+ //
+ static semantics::class_*
+ comp_value_wrapper (semantics::type& t)
+ {
+ if (semantics::class_* c = comp_value (t))
+ return c;
+ else if (semantics::type* wt = wrapper (t))
+ return comp_value (*wt);
+ else
+ return 0;
+ }
+
static bool
container (semantics::type& t)
{