summaryrefslogtreecommitdiff
path: root/odb/semantics/relational/table.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'odb/semantics/relational/table.cxx')
-rw-r--r--odb/semantics/relational/table.cxx52
1 files changed, 52 insertions, 0 deletions
diff --git a/odb/semantics/relational/table.cxx b/odb/semantics/relational/table.cxx
new file mode 100644
index 0000000..a9290c6
--- /dev/null
+++ b/odb/semantics/relational/table.cxx
@@ -0,0 +1,52 @@
+// file : odb/semantics/relational/table.cxx
+// author : Boris Kolpackov <boris@codesynthesis.com>
+// copyright : Copyright (c) 2009-2011 Code Synthesis Tools CC
+// license : GNU GPL v3; see accompanying LICENSE file
+
+#include <cutl/compiler/type-info.hxx>
+
+#include <odb/semantics/relational/table.hxx>
+
+namespace semantics
+{
+ namespace relational
+ {
+ // type info
+ //
+ namespace
+ {
+ struct init
+ {
+ init ()
+ {
+ using compiler::type_info;
+
+ // table
+ //
+ {
+ type_info ti (typeid (table));
+ ti.add_base (typeid (nameable));
+ ti.add_base (typeid (scope));
+ insert (ti);
+ }
+
+ // object_table
+ //
+ {
+ type_info ti (typeid (object_table));
+ ti.add_base (typeid (table));
+ insert (ti);
+ }
+
+ // container_table
+ //
+ {
+ type_info ti (typeid (container_table));
+ ti.add_base (typeid (table));
+ insert (ti);
+ }
+ }
+ } init_;
+ }
+ }
+}