diff options
Diffstat (limited to 'qt/pgsql/template/test.hxx')
-rw-r--r-- | qt/pgsql/template/test.hxx | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/qt/pgsql/template/test.hxx b/qt/pgsql/template/test.hxx new file mode 100644 index 0000000..7d285b7 --- /dev/null +++ b/qt/pgsql/template/test.hxx @@ -0,0 +1,27 @@ +// file : qt/pgsql/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 |