diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2012-09-05 14:58:55 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2012-09-05 14:58:55 +0200 |
commit | 0e6587f29f40a841f0e393887fea4e5cf385e0e6 (patch) | |
tree | a556749c3ee3ac2714c0bb8914277fd0cb8bfb8d /qt/common/basic/test.hxx | |
parent | 5a16b0511ae3ac491ac23bba07f7259f6c255472 (diff) |
Support for Qt QUuid persistence
This support was added to the basic sub-profile. New test: qt/common/basic.
Updated the qt example to use QUuid as an object id.
Diffstat (limited to 'qt/common/basic/test.hxx')
-rw-r--r-- | qt/common/basic/test.hxx | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/qt/common/basic/test.hxx b/qt/common/basic/test.hxx new file mode 100644 index 0000000..6fee19a --- /dev/null +++ b/qt/common/basic/test.hxx @@ -0,0 +1,36 @@ +// file : qt/common/basic/test.hxx +// copyright : Copyright (c) 2009-2012 Code Synthesis Tools CC +// license : GNU GPL v2; see accompanying LICENSE file + +#ifndef TEST_HXX +#define TEST_HXX + +#include <QUuid> + +#include <odb/core.hxx> + +#pragma db object +struct object +{ + object () {} + object (unsigned long id): id_ (id) {} + + #pragma db id + unsigned long id_; + + QUuid uuid_; + QUuid null_; + + #pragma db not_null + QUuid zero_; + + bool operator== (const object& x) const + { + return id_ == x.id_ && + uuid_ == x.uuid_ && + null_ == x.null_ && + zero_ == x.zero_; + } +}; + +#endif // TEST_HXX |