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/template/test.hxx | |
parent | 95e1a2336699ef7ac8cdd806f7dca8c100ceeb50 (diff) |
Add tests for Oracle support of Qt profile
Diffstat (limited to 'qt/oracle/template/test.hxx')
-rw-r--r-- | qt/oracle/template/test.hxx | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/qt/oracle/template/test.hxx b/qt/oracle/template/test.hxx new file mode 100644 index 0000000..02fcb8f --- /dev/null +++ b/qt/oracle/template/test.hxx @@ -0,0 +1,27 @@ +// file : qt/oracle/template/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 <odb/core.hxx> + +#pragma db object +struct object +{ + object (unsigned long id) + : id_ (id) + { + } + + object () + { + } + + #pragma db id + unsigned long id_; +}; + +#endif // TEST_HXX |