summaryrefslogtreecommitdiff
path: root/odb/semantics/relational/primary-key.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'odb/semantics/relational/primary-key.hxx')
-rw-r--r--odb/semantics/relational/primary-key.hxx45
1 files changed, 45 insertions, 0 deletions
diff --git a/odb/semantics/relational/primary-key.hxx b/odb/semantics/relational/primary-key.hxx
new file mode 100644
index 0000000..a35e8f5
--- /dev/null
+++ b/odb/semantics/relational/primary-key.hxx
@@ -0,0 +1,45 @@
+// file : odb/semantics/relational/primary-key.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_PRIMARY_KEY_HXX
+#define ODB_SEMANTICS_RELATIONAL_PRIMARY_KEY_HXX
+
+#include <odb/semantics/relational/elements.hxx>
+#include <odb/semantics/relational/key.hxx>
+
+namespace semantics
+{
+ namespace relational
+ {
+ class primary_key: public key
+ {
+ public:
+ bool
+ auto_ () const
+ {
+ return auto__;
+ }
+
+ public:
+ // Primary key has the implicit empty id.
+ //
+ primary_key (bool auto_)
+ : key (""), auto__ (auto_)
+ {
+ }
+
+ virtual string
+ kind () const
+ {
+ return "primary key";
+ }
+
+ private:
+ bool auto__;
+ };
+ }
+}
+
+#endif // ODB_SEMANTICS_RELATIONAL_PRIMARY_KEY_HXX