diff options
Diffstat (limited to 'sqlite/truncation/test.hxx')
-rw-r--r-- | sqlite/truncation/test.hxx | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/sqlite/truncation/test.hxx b/sqlite/truncation/test.hxx new file mode 100644 index 0000000..824c0e8 --- /dev/null +++ b/sqlite/truncation/test.hxx @@ -0,0 +1,48 @@ +// file : sqlite/truncation/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 <string> +#include <odb/core.hxx> + +#pragma db object table ("test") +struct object1 +{ + object1 (unsigned long id) + : id_ (id) + { + } + + object1 () + { + } + + #pragma db id + unsigned long id_; + + std::string str_; +}; + +#pragma db object table ("test") +struct object2 +{ + object2 (unsigned long id) + : id_ (id) + { + } + + object2 () + { + } + + #pragma db id + unsigned long id_; + + std::string str_; +}; + +#endif // TEST_HXX |