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.cxx38
1 files changed, 18 insertions, 20 deletions
diff --git a/odb/semantics/relational/table.cxx b/odb/semantics/relational/table.cxx
index 725497e..aac50fe 100644
--- a/odb/semantics/relational/table.cxx
+++ b/odb/semantics/relational/table.cxx
@@ -3,13 +3,27 @@
// license : GNU GPL v3; see accompanying LICENSE file
#include <cutl/compiler/type-info.hxx>
-
-#include <odb/semantics/relational/table.hxx>
+#include <odb/semantics/relational.hxx>
namespace semantics
{
namespace relational
{
+ table::
+ table (xml::parser& p, qscope&, graph& g)
+ : qnameable (p, g), uscope (p, g)
+ {
+ }
+
+ void table::
+ serialize (xml::serializer& s) const
+ {
+ s.start_element (xmlns, "table");
+ qnameable::serialize_attributes (s);
+ uscope::serialize_content (s);
+ s.end_element ();
+ }
+
// type info
//
namespace
@@ -18,32 +32,16 @@ namespace semantics
{
init ()
{
+ qnameable::parser_map_["table"] = &qnameable::parser_impl<table>;
+
using compiler::type_info;
- // table
- //
{
type_info ti (typeid (table));
ti.add_base (typeid (qnameable));
ti.add_base (typeid (uscope));
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_;
}