summaryrefslogtreecommitdiff
path: root/odb/context.hxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2010-11-09 14:52:34 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2010-11-09 14:52:34 +0200
commit1b2da148946713f57dfe883c25953c488889e5a9 (patch)
tree31740f00d3118acf981726b97354cd205c8f77cb /odb/context.hxx
parentedae7d98cfac5f55782236d397c831f68ebe11a6 (diff)
Add support for standard and custom ODB compilation prologues and epilogues
Diffstat (limited to 'odb/context.hxx')
-rw-r--r--odb/context.hxx21
1 files changed, 0 insertions, 21 deletions
diff --git a/odb/context.hxx b/odb/context.hxx
index 7fe392b..3fad543 100644
--- a/odb/context.hxx
+++ b/odb/context.hxx
@@ -159,39 +159,18 @@ public:
return *c.get<semantics::type*> ("tree-value-type");
}
- static string
- container_fq_vt (semantics::data_member& m)
- {
- return "container_traits< " + m.type ().fq_name (m.belongs ().hint ()) +
- " >::value_type";
- }
-
static semantics::type&
container_it (semantics::type& c)
{
return *c.get<semantics::type*> ("tree-index-type");
}
- static string
- container_fq_it (semantics::data_member& m)
- {
- return "container_traits< " + m.type ().fq_name (m.belongs ().hint ()) +
- " >::index_type";
- }
-
static semantics::type&
container_kt (semantics::type& c)
{
return *c.get<semantics::type*> ("tree-key-type");
}
- static string
- container_fq_kt (semantics::data_member& m)
- {
- return "container_traits< " + m.type ().fq_name (m.belongs ().hint ()) +
- " >::key_type";
- }
-
protected:
struct data;
typedef cutl::shared_ptr<data> data_ptr;