diff options
author | Constantin Michael <constantin@codesynthesis.com> | 2011-09-02 14:15:46 +0200 |
---|---|---|
committer | Constantin Michael <constantin@codesynthesis.com> | 2011-10-21 11:47:16 +0200 |
commit | 84f9ce9150abfb5f4424d8e94fefa932af3172fa (patch) | |
tree | 5205a6d141793c190fe1e0cacda2b5f1bac6b06f /oracle/template/test.hxx | |
parent | 7e70aa043b7a2482590b0e5459284d2c848eb474 (diff) |
Add infrastructure for oracle development testing and implement native test
Diffstat (limited to 'oracle/template/test.hxx')
-rw-r--r-- | oracle/template/test.hxx | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/oracle/template/test.hxx b/oracle/template/test.hxx new file mode 100644 index 0000000..7e8f699 --- /dev/null +++ b/oracle/template/test.hxx @@ -0,0 +1,27 @@ +// file : oracle/template/test.hxx +// author : Constantin Michael <constantin@codesynthesis.com> +// copyright : Copyright (c) 2009-2011 Code Synthesis Tools CC +// license : ODB NCUEL; 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 |