From b9161e6e332cb0279ef8616dbbce4c90b60bce15 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Tue, 3 Aug 2010 14:12:48 +0200 Subject: New tests --- common/lifecycle/test.hxx | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 common/lifecycle/test.hxx (limited to 'common/lifecycle/test.hxx') diff --git a/common/lifecycle/test.hxx b/common/lifecycle/test.hxx new file mode 100644 index 0000000..268678c --- /dev/null +++ b/common/lifecycle/test.hxx @@ -0,0 +1,29 @@ +// file : common/lifecycle/test.hxx +// author : Boris Kolpackov +// copyright : Copyright (c) 2009-2010 Code Synthesis Tools CC +// license : GNU GPL v2; see accompanying LICENSE file + +#ifndef TEST_HXX +#define TEST_HXX + +#include +#include + +#pragma odb object +struct object +{ + object (unsigned long id) + : id_ (id) + { + } + + object () + { + } + + #pragma odb id + unsigned long id_; + std::string str_; +}; + +#endif // TEST_HXX -- cgit v1.1