9QT_DEFINE_QSDP_SPECIALIZATION_DTOR(QPlaceSupplierPrivate)
11bool QPlaceSupplierPrivate::operator==(
const QPlaceSupplierPrivate &other)
const
14 this->name == other.name
15 &&
this->supplierId == other.supplierId
16 &&
this->url == other.url
17 &&
this->icon == other.icon
21bool QPlaceSupplierPrivate::isEmpty()
const
23 return (name.isEmpty()
24 && supplierId.isEmpty()
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
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
75
76
77QPlaceSupplier::QPlaceSupplier()
78 : d(
new QPlaceSupplierPrivate)
83
84
85QPlaceSupplier::QPlaceSupplier(
const QPlaceSupplier &other)
noexcept =
default;
88
89
90QPlaceSupplier::~QPlaceSupplier() =
default;
93
94
95
96QPlaceSupplier &QPlaceSupplier::operator=(
const QPlaceSupplier &other)
noexcept
106
107
108
109
112
113
114
115
117bool QPlaceSupplier::isEqual(
const QPlaceSupplier &other)
const noexcept
119 return (*(d.constData()) == *(other.d.constData()));
123
124
125
126
127
128
129
130
131
134
135
136
137
138
139
140
141QString QPlaceSupplier::name()
const
147
148
149void QPlaceSupplier::setName(
const QString &name)
155
156
157
158
159
160
163
164
165
166
167
168
169QString QPlaceSupplier::supplierId()
const
171 return d->supplierId;
175
176
177void QPlaceSupplier::setSupplierId(
const QString &identifier)
179 d->supplierId = identifier;
183
184
185
186
189
190
191
192QUrl QPlaceSupplier::url()
const
198
199
200void QPlaceSupplier::setUrl(
const QUrl &url)
206
207
208
209
212
213
214
215QPlaceIcon QPlaceSupplier::icon()
const
221
222
223void QPlaceSupplier::setIcon(
const QPlaceIcon &icon)
229
230
231bool QPlaceSupplier::isEmpty()
const
236#include "moc_qplacesupplier.cpp"