summaryrefslogtreecommitdiff
path: root/odb/semantics/relational/model.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'odb/semantics/relational/model.hxx')
-rw-r--r--odb/semantics/relational/model.hxx39
1 files changed, 39 insertions, 0 deletions
diff --git a/odb/semantics/relational/model.hxx b/odb/semantics/relational/model.hxx
new file mode 100644
index 0000000..7d2f944
--- /dev/null
+++ b/odb/semantics/relational/model.hxx
@@ -0,0 +1,39 @@
+// file : odb/semantics/relational/model.hxx
+// author : Boris Kolpackov <boris@codesynthesis.com>
+// copyright : Copyright (c) 2009-2011 Code Synthesis Tools CC
+// license : GNU GPL v3; see accompanying LICENSE file
+
+#ifndef ODB_SEMANTICS_RELATIONAL_MODEL_HXX
+#define ODB_SEMANTICS_RELATIONAL_MODEL_HXX
+
+#include <odb/semantics/relational/elements.hxx>
+
+namespace semantics
+{
+ namespace relational
+ {
+ class model: public graph<node, edge>, public scope
+ {
+ public:
+ model ()
+ {
+ }
+
+ virtual string
+ kind () const
+ {
+ return "model";
+ }
+
+ public:
+ using scope::add_edge_left;
+ using scope::add_edge_right;
+
+ private:
+ model (model const&);
+ model& operator= (model const&);
+ };
+ }
+}
+
+#endif // ODB_SEMANTICS_RELATIONAL_MODEL_HXX