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
46
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
76
77
78QPlaceSupplier::QPlaceSupplier()
79 : d(
new QPlaceSupplierPrivate)
84
85
86QPlaceSupplier::QPlaceSupplier(
const QPlaceSupplier &other)
noexcept =
default;
89
90
91QPlaceSupplier::~QPlaceSupplier() =
default;
94
95
96
97QPlaceSupplier &QPlaceSupplier::operator=(
const QPlaceSupplier &other)
noexcept
107
108
109
110
113
114
115
116
118bool QPlaceSupplier::isEqual(
const QPlaceSupplier &other)
const noexcept
120 return (*(d.constData()) == *(other.d.constData()));
124
125
126
127
128
129
130
131
132
135
136
137
138
139
140
141
142QString QPlaceSupplier::name()
const
148
149
150void QPlaceSupplier::setName(
const QString &name)
156
157
158
159
160
161
164
165
166
167
168
169
170QString QPlaceSupplier::supplierId()
const
172 return d->supplierId;
176
177
178void QPlaceSupplier::setSupplierId(
const QString &identifier)
180 d->supplierId = identifier;
184
185
186
187
190
191
192
193QUrl QPlaceSupplier::url()
const
199
200
201void QPlaceSupplier::setUrl(
const QUrl &url)
207
208
209
210
213
214
215
216QPlaceIcon QPlaceSupplier::icon()
const
222
223
224void QPlaceSupplier::setIcon(
const QPlaceIcon &icon)
230
231
232bool QPlaceSupplier::isEmpty()
const
237#include "moc_qplacesupplier.cpp"