diff options
author | Constantin Michael <constantin@codesynthesis.com> | 2011-11-11 13:57:27 +0200 |
---|---|---|
committer | Constantin Michael <constantin@codesynthesis.com> | 2011-11-11 13:57:27 +0200 |
commit | 1b2489b74b3e77d7eef2d18b3b206d9825731762 (patch) | |
tree | c02970f5a24b5ce46fac3a2a3554cb48cac6b1c2 /qt/oracle/basic/test.hxx | |
parent | 95e1a2336699ef7ac8cdd806f7dca8c100ceeb50 (diff) |
Add tests for Oracle support of Qt profile
Diffstat (limited to 'qt/oracle/basic/test.hxx')
-rw-r--r-- | qt/oracle/basic/test.hxx | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/qt/oracle/basic/test.hxx b/qt/oracle/basic/test.hxx new file mode 100644 index 0000000..25710c0 --- /dev/null +++ b/qt/oracle/basic/test.hxx @@ -0,0 +1,29 @@ +// file : qt/oracle/basic/test.hxx +// author : Constantin Michael <constantin@codesynthesis.com> +// copyright : Copyright (c) 2009-2011 Code Synthesis Tools CC +// license : GNU GPL v2; see accompanying LICENSE file + +#ifndef TEST_HXX +#define TEST_HXX + +#include <QtCore/QString> +#include <QtCore/QByteArray> + +#pragma db object +struct object +{ + bool + operator== (const object& x) const + { + return + str == x.str && + blob == x.blob; + } + + #pragma db id + QString str; + + QByteArray blob; +}; + +#endif // TEST_HXX |