diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2011-02-17 14:50:11 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2011-02-17 14:50:11 +0200 |
commit | 5aaec95bbfb066130ecac03eece3813cee61a3e1 (patch) | |
tree | 87c24d1b6afe613c31076cf7b417a7e2b7188994 /boost/mysql/template/test.hxx | |
parent | 29e7db53cb1db2c4d743d4756b8ac3fee28ab8ea (diff) |
Add test infrastructure for boost profile
Diffstat (limited to 'boost/mysql/template/test.hxx')
-rw-r--r-- | boost/mysql/template/test.hxx | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/boost/mysql/template/test.hxx b/boost/mysql/template/test.hxx new file mode 100644 index 0000000..c89562b --- /dev/null +++ b/boost/mysql/template/test.hxx @@ -0,0 +1,27 @@ +// file : boost/mysql/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 |