blob: e2c3dbc5f206142be94e7192242ef743ae20050b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
|
// file : common/view/olv/test5.hxx
// copyright : Copyright (c) 2009-2019 Code Synthesis Tools CC
// license : GNU GPL v2; see accompanying LICENSE file
#ifndef TEST5_HXX
#define TEST5_HXX
#include <string>
#include <memory> // shared_ptr
#include <utility> // pair
#include <odb/core.hxx>
// Test NULL object pointers.
//
#pragma db namespace table("t5_") pointer(std::shared_ptr) session
namespace test5
{
using std::shared_ptr;
#pragma db object
struct object1
{
object1 (int n_ = 0): n (n_) {}
#pragma db id auto
int id;
int n;
};
#pragma db object
struct object2
{
object2 () {}
object2 (const char* s_, shared_ptr<object1> o1_): s (s_), o1 (o1_) {}
#pragma db id auto
int id;
std::string s;
shared_ptr<object1> o1;
};
#pragma db view object(object1) object(object2)
struct view1
{
shared_ptr<object1> o1;
shared_ptr<object2> o2;
};
typedef std::pair<int, int> comp_id;
#pragma db value(comp_id)
#pragma db object
struct object3
{
object3 (comp_id id_ = comp_id (), int n_ = 0): id (id_), n (n_) {}
#pragma db id
comp_id id;
int n;
};
#pragma db object
struct object4
{
object4 () {}
object4 (const char* s_, shared_ptr<object3> o3_): s (s_), o3 (o3_) {}
#pragma db id auto
int id;
std::string s;
shared_ptr<object3> o3;
};
#pragma db view object(object3) object(object4)
struct view2
{
shared_ptr<object4> o4;
shared_ptr<object3> o3;
};
}
#endif // TEST5_HXX
|