summaryrefslogtreecommitdiff
path: root/odb/semantics/relational/index.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'odb/semantics/relational/index.hxx')
-rw-r--r--odb/semantics/relational/index.hxx44
1 files changed, 44 insertions, 0 deletions
diff --git a/odb/semantics/relational/index.hxx b/odb/semantics/relational/index.hxx
new file mode 100644
index 0000000..ee6b202
--- /dev/null
+++ b/odb/semantics/relational/index.hxx
@@ -0,0 +1,44 @@
+// file : odb/semantics/relational/index.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_INDEX_HXX
+#define ODB_SEMANTICS_RELATIONAL_INDEX_HXX
+
+#include <odb/semantics/relational/elements.hxx>
+#include <odb/semantics/relational/key.hxx>
+#include <odb/semantics/relational/table.hxx>
+
+namespace semantics
+{
+ namespace relational
+ {
+ // Note that unlike other keys, indexes are defined in the model
+ // scope, not table scope.
+ //
+ class index: public key
+ {
+ public:
+ relational::table&
+ table () const
+ {
+ return contains_begin ()->column ().table ();
+ }
+
+ public:
+ index (string const& id)
+ : key (id)
+ {
+ }
+
+ virtual string
+ kind () const
+ {
+ return "index";
+ }
+ };
+ }
+}
+
+#endif // ODB_SEMANTICS_RELATIONAL_INDEX_HXX