summaryrefslogtreecommitdiff
path: root/odb/odb/relational/context.ixx
diff options
context:
space:
mode:
Diffstat (limited to 'odb/odb/relational/context.ixx')
-rw-r--r--odb/odb/relational/context.ixx44
1 files changed, 44 insertions, 0 deletions
diff --git a/odb/odb/relational/context.ixx b/odb/odb/relational/context.ixx
new file mode 100644
index 0000000..abf1fb5
--- /dev/null
+++ b/odb/odb/relational/context.ixx
@@ -0,0 +1,44 @@
+// file : odb/relational/context.ixx
+// license : GNU GPL v3; see accompanying LICENSE file
+
+namespace relational
+{
+ inline bool context::
+ grow (semantics::class_& c, user_section* s)
+ {
+ return current ().grow_impl (c, s);
+ }
+
+ inline bool context::
+ grow (semantics::data_member& m)
+ {
+ return current ().grow_impl (m);
+ }
+
+ inline bool context::
+ grow (semantics::data_member& m,
+ semantics::type& t,
+ const custom_cxx_type* ct,
+ string const& kp)
+ {
+ return current ().grow_impl (m, t, ct, kp);
+ }
+
+ inline context::string context::
+ quote_string (string const& str) const
+ {
+ return current ().quote_string_impl (str);
+ }
+
+ inline context::string context::
+ quote_id (string const& id) const
+ {
+ return current ().quote_id_impl (qname (id));
+ }
+
+ inline context::string context::
+ quote_id (qname const& id) const
+ {
+ return current ().quote_id_impl (id);
+ }
+}