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