summaryrefslogtreecommitdiff
path: root/odb-examples/query/person.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'odb-examples/query/person.hxx')
-rw-r--r--odb-examples/query/person.hxx69
1 files changed, 69 insertions, 0 deletions
diff --git a/odb-examples/query/person.hxx b/odb-examples/query/person.hxx
new file mode 100644
index 0000000..59e0721
--- /dev/null
+++ b/odb-examples/query/person.hxx
@@ -0,0 +1,69 @@
+// file : query/person.hxx
+// copyright : not copyrighted - public domain
+
+#ifndef PERSON_HXX
+#define PERSON_HXX
+
+#include <string>
+
+#include <odb/core.hxx>
+#include <odb/nullable.hxx>
+
+#pragma db object
+class person
+{
+public:
+ person (const std::string& first,
+ const std::string& last,
+ unsigned short age)
+ : first_ (first), last_ (last), age_ (age)
+ {
+ }
+
+ person (const std::string& first,
+ const std::string& middle,
+ const std::string& last,
+ unsigned short age)
+ : first_ (first), middle_ (middle), last_ (last), age_ (age)
+ {
+ }
+
+ const std::string&
+ first () const
+ {
+ return first_;
+ }
+
+ const odb::nullable<std::string>&
+ middle () const
+ {
+ return middle_;
+ }
+
+ const std::string&
+ last () const
+ {
+ return last_;
+ }
+
+ unsigned short
+ age () const
+ {
+ return age_;
+ }
+
+private:
+ friend class odb::access;
+
+ person () {}
+
+ #pragma db id auto
+ unsigned long id_;
+
+ std::string first_;
+ odb::nullable<std::string> middle_;
+ std::string last_;
+ unsigned short age_;
+};
+
+#endif // PERSON_HXX