summaryrefslogtreecommitdiff
path: root/odb/semantics/relational/changeset.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'odb/semantics/relational/changeset.cxx')
-rw-r--r--odb/semantics/relational/changeset.cxx56
1 files changed, 0 insertions, 56 deletions
diff --git a/odb/semantics/relational/changeset.cxx b/odb/semantics/relational/changeset.cxx
deleted file mode 100644
index e643285..0000000
--- a/odb/semantics/relational/changeset.cxx
+++ /dev/null
@@ -1,56 +0,0 @@
-// file : odb/semantics/relational/changeset.cxx
-// license : GNU GPL v3; see accompanying LICENSE file
-
-#include <cutl/compiler/type-info.hxx>
-
-#include <odb/semantics/relational/changeset.hxx>
-
-namespace semantics
-{
- namespace relational
- {
- changeset::
- changeset (changeset const& c, qscope& b, graph& g)
- : qscope (c, &b, g),
- version_ (c.version_),
- alters_model_ (0)
- {
- }
-
- changeset::
- changeset (xml::parser& p, qscope& b, graph& g)
- : qscope (p, &b, g),
- version_ (p.attribute<version_type> ("version")),
- alters_model_ (0)
- {
- }
-
- void changeset::
- serialize (xml::serializer& s) const
- {
- s.start_element (xmlns, "changeset");
- s.attribute ("version", version_);
- qscope::serialize_content (s);
- s.end_element ();
- }
-
- // type info
- //
- namespace
- {
- struct init
- {
- init ()
- {
- using compiler::type_info;
-
- {
- type_info ti (typeid (changeset));
- ti.add_base (typeid (qscope));
- insert (ti);
- }
- }
- } init_;
- }
- }
-}