diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2011-03-01 11:56:33 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2011-03-01 11:56:33 +0200 |
commit | 5a14aa4978cca949f3d07561ba35f8fd3af76ab2 (patch) | |
tree | 4c5e54ca7daf83130fd06f16db56b517ea254ce6 /schema/embedded/person.hxx | |
parent | 2ef165437ce47f50110a9b230f302c5cd5fde1d4 (diff) |
Add support for embedded database schemas
New options: --schema-format, --default-schema. New example: schema/embedded.
Diffstat (limited to 'schema/embedded/person.hxx')
-rw-r--r-- | schema/embedded/person.hxx | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/schema/embedded/person.hxx b/schema/embedded/person.hxx new file mode 100644 index 0000000..a3d44b9 --- /dev/null +++ b/schema/embedded/person.hxx @@ -0,0 +1,60 @@ +// file : schema/embedded/person.hxx +// author : Boris Kolpackov <boris@codesynthesis.com> +// copyright : not copyrighted - public domain + +#ifndef PERSON_HXX +#define PERSON_HXX + +#include <string> + +#include <odb/core.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) + { + } + + const std::string& + first () const + { + return first_; + } + + const std::string& + last () const + { + return last_; + } + + unsigned short + age () const + { + return age_; + } + + void + age (unsigned short age) + { + age_ = age; + } + +private: + friend class odb::access; + + person () {} + + #pragma db id auto + unsigned long id_; + + std::string first_; + std::string last_; + unsigned short age_; +}; + +#endif // PERSON_HXX |