summaryrefslogtreecommitdiff
path: root/odb/semantics/relational/table.hxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2013-03-18 08:42:38 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2013-04-10 18:46:43 +0200
commitab135a6c31cd0e8c8b63b78781baa22442c1c129 (patch)
treea98a9cdf2e844a573e00e60264b437ce124339df /odb/semantics/relational/table.hxx
parent08b159e18527c2d6844e569b1309b5033b4d47c9 (diff)
Add changelog, changeset, and add_table semantics nodes
Diffstat (limited to 'odb/semantics/relational/table.hxx')
-rw-r--r--odb/semantics/relational/table.hxx13
1 files changed, 13 insertions, 0 deletions
diff --git a/odb/semantics/relational/table.hxx b/odb/semantics/relational/table.hxx
index a57a7db..5a38e6d 100644
--- a/odb/semantics/relational/table.hxx
+++ b/odb/semantics/relational/table.hxx
@@ -27,6 +27,19 @@ namespace semantics
//
using qnameable::scope;
};
+
+ class add_table: public table
+ {
+ public:
+ add_table (string const& id): table (id) {}
+ add_table (xml::parser& p, qscope& s, graph& g): table (p, s, g) {}
+
+ virtual string
+ kind () const {return "add table";}
+
+ virtual void
+ serialize (xml::serializer&) const;
+ };
}
}