From e39f1cf9f0c3f520c61e0b832cca78df715d658d Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Wed, 19 Oct 2011 10:58:44 +0200 Subject: Rename common/const test to common/const-object --- common/const-object/test.hxx | 52 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 common/const-object/test.hxx (limited to 'common/const-object/test.hxx') diff --git a/common/const-object/test.hxx b/common/const-object/test.hxx new file mode 100644 index 0000000..82635f0 --- /dev/null +++ b/common/const-object/test.hxx @@ -0,0 +1,52 @@ +// file : common/const-object/test.hxx +// author : Boris Kolpackov +// copyright : Copyright (c) 2009-2011 Code Synthesis Tools CC +// license : GNU GPL v2; see accompanying LICENSE file + +#ifndef TEST_HXX +#define TEST_HXX + +#include +#include + +#pragma db object pointer (obj1*) +struct obj1 +{ + obj1 () {} + obj1 (int i): id (i) {} + + #pragma db id + int id; + + void f () {} + void cf () const {} +}; + +#pragma db object pointer (std::auto_ptr) +struct obj2 +{ + obj2 () {} + obj2 (int i): id (i) {} + + #pragma db id + int id; + + void f () {} + void cf () const {} +}; + +#pragma db object +struct aggr +{ + aggr (int i): id (i), o1 (0) {} + aggr (): o1 (0) {} + ~aggr () {delete o1;} + + #pragma db id + int id; + + const obj1* o1; + std::auto_ptr o2; +}; + +#endif // TEST_HXX -- cgit v1.1