From e08eeb9e5da87a729992c5a1d14bfd62f4ed2205 Mon Sep 17 00:00:00 2001 From: Constantin Michael Date: Mon, 18 Apr 2011 12:56:18 +0200 Subject: Add tests for qt/smart-ptr --- qt/common/smart-ptr/test.hxx | 56 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 qt/common/smart-ptr/test.hxx (limited to 'qt/common/smart-ptr/test.hxx') diff --git a/qt/common/smart-ptr/test.hxx b/qt/common/smart-ptr/test.hxx new file mode 100644 index 0000000..6b376b0 --- /dev/null +++ b/qt/common/smart-ptr/test.hxx @@ -0,0 +1,56 @@ +// file : qt/common/smart-ptr/test.hxx +// author : Constantin Michael +// 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 +#include + +struct obj; + +#pragma db object +struct cont +{ + cont () + { + } + + cont (unsigned long id) + : id (id) + { + } + + #pragma db id + unsigned long id; + + typedef std::vector > obj_list; + + #pragma db inverse(c) not_null + obj_list o; +}; + +#pragma db object +struct obj +{ + obj () + { + } + + obj (unsigned long id) + : id (id) + { + } + + #pragma db id + unsigned long id; + + #pragma db not_null + QLazySharedPointer c; +}; + +#endif // TEST_HXX -- cgit v1.1