summaryrefslogtreecommitdiff
path: root/odb/relational/context.ixx
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2024-01-22 15:58:08 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2024-01-24 17:02:47 +0300
commit823026b58211a4166de06ac243d978dcb9930271 (patch)
tree97b43039cb769f8bee410e8536f9f945f2825153 /odb/relational/context.ixx
parentb56b9c6796d8853758f0f5967488260d61b788e2 (diff)
Turn odb repository into muti-package repository
Also remove the autoconf/make-based build system.
Diffstat (limited to 'odb/relational/context.ixx')
-rw-r--r--odb/relational/context.ixx44
1 files changed, 0 insertions, 44 deletions
diff --git a/odb/relational/context.ixx b/odb/relational/context.ixx
deleted file mode 100644
index abf1fb5..0000000
--- a/odb/relational/context.ixx
+++ /dev/null
@@ -1,44 +0,0 @@
-// 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);
- }
-}