aboutsummaryrefslogtreecommitdiff
path: root/boost/common/smart-ptr/test.hxx
diff options
context:
space:
mode:
authorConstantin Michael <constantin@codesynthesis.com>2011-03-02 18:02:32 +0200
committerConstantin Michael <constantin@codesynthesis.com>2011-03-08 18:13:49 +0200
commit9bdf5bcbeb1b8748cdc269b04f9cbb5ca63630bf (patch)
tree0f14159b46315c64207a289ddf460c2a485916de /boost/common/smart-ptr/test.hxx
parenta236e04a281da3ce9b96418ed81a1dff85008da5 (diff)
Add boost/common/smart-ptr and boost/common/unordered tests
Diffstat (limited to 'boost/common/smart-ptr/test.hxx')
-rw-r--r--boost/common/smart-ptr/test.hxx59
1 files changed, 59 insertions, 0 deletions
diff --git a/boost/common/smart-ptr/test.hxx b/boost/common/smart-ptr/test.hxx
new file mode 100644
index 0000000..ea158e7
--- /dev/null
+++ b/boost/common/smart-ptr/test.hxx
@@ -0,0 +1,59 @@
+// file : boost/common/smart-ptr/test.hxx
+// author : Constantin Michael <constantin@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 <vector>
+
+#include <odb/core.hxx>
+#include <odb/boost/smart-ptr/lazy-ptr.hxx>
+
+struct obj;
+
+using odb::boost::lazy_shared_ptr;
+using odb::boost::lazy_weak_ptr;
+
+#pragma db object
+struct cont
+{
+ cont ()
+ {
+ }
+
+ cont (unsigned long id)
+ : id (id)
+ {
+ }
+
+ #pragma db id
+ unsigned long id;
+
+ typedef std::vector<lazy_weak_ptr<obj> > 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
+ lazy_shared_ptr<cont> c;
+};
+
+#endif // TEST_HXX