diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2011-03-28 11:22:59 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2011-03-28 11:22:59 +0200 |
commit | 1ba1097cd1d71b945255d9401ffa4f04a036e94f (patch) | |
tree | e58fb8541d412a9ebe62e839da2a6db9b4abbc89 /sqlite/template/test.hxx | |
parent | d2c8179bfef0503647c519f44401f29d8bddd122 (diff) |
Add SQLite-specific tests
Diffstat (limited to 'sqlite/template/test.hxx')
-rw-r--r-- | sqlite/template/test.hxx | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/sqlite/template/test.hxx b/sqlite/template/test.hxx new file mode 100644 index 0000000..45b1d82 --- /dev/null +++ b/sqlite/template/test.hxx @@ -0,0 +1,27 @@ +// file : sqlite/template/test.hxx +// author : Boris Kolpackov <boris@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 |