diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2012-01-14 09:43:38 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2012-01-20 15:45:46 +0200 |
commit | 0da5345276f1e655e5e099fdf6280466e3a5dda4 (patch) | |
tree | 51c61e4dfef993aa4a7d6b6e9735324e118c18a3 /qt/mssql/template/test.hxx | |
parent | e0849593316ba0f3e45545dad98ee9218d017184 (diff) |
Date-time part of Qt profile implementation for SQL Server
Diffstat (limited to 'qt/mssql/template/test.hxx')
-rw-r--r-- | qt/mssql/template/test.hxx | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/qt/mssql/template/test.hxx b/qt/mssql/template/test.hxx new file mode 100644 index 0000000..c3b2198 --- /dev/null +++ b/qt/mssql/template/test.hxx @@ -0,0 +1,27 @@ +// file : qt/mssql/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 |