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
|
// Copyright (C) 2021 The Qt Company Ltd.
// Copyright (C) 2019 Luxoft Sweden AB
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
#ifndef QIFREMOTEOBJECTSPENDINGRESULT_P_H
#define QIFREMOTEOBJECTSPENDINGRESULT_P_H
//
// W A R N I N G
// -------------
//
// This file is not part of the Qt API. It exists purely as an
// implementation detail. This header file may change from version to
// version without notice, or even be removed.
//
// We mean it.
//
#include <QtCore/QDataStream>
#include <QtCore/QObject>
#include <QtRemoteObjects/qtremoteobjectglobal.h>
#include <QtIfRemoteObjectsHelper/qtifremoteobjectshelper_global.h>
QT_BEGIN_NAMESPACE
#if QT_VERSION < QT_VERSION_CHECK(6, 9, 0)
# ifndef QT_DECLARE_EXPORTED_QT_LOGGING_CATEGORY
# define QT_DECLARE_EXPORTED_QT_LOGGING_CATEGORY(cat, export_macro) Q_DECLARE_EXPORTED_LOGGING_CATEGORY(cat, export_macro)
# endif
#endif
namespace qtif_private {
QT_DECLARE_EXPORTED_QT_LOGGING_CATEGORY(qLcQtIfRoHelper,
Q_IFREMOTEOBJECTSHELPER_EXPORT)
}
class Q_IFREMOTEOBJECTSHELPER_EXPORT QIfRemoteObjectsPendingResult
{
Q_GADGET
Q_PROPERTY(quint64 id READ id WRITE setId FINAL)
Q_PROPERTY(bool failed READ failed WRITE setFailed FINAL)
public:
QIfRemoteObjectsPendingResult();
explicit QIfRemoteObjectsPendingResult(quint64 id, bool failed);
quint64 id() const;
void setId(quint64 id);
bool failed() const;
void setFailed(bool failed);
private:
quint64 m_id;
bool m_failed;
};
//POD, passing by value should be fine
inline bool operator==(QIfRemoteObjectsPendingResult left, QIfRemoteObjectsPendingResult right) Q_DECL_NOTHROW {
return left.id() == right.id() && left.failed() == right.failed();
}
inline bool operator!=(QIfRemoteObjectsPendingResult left, QIfRemoteObjectsPendingResult right) Q_DECL_NOTHROW {
return !(left == right);
}
inline QDataStream &operator<<(QDataStream &ds, QIfRemoteObjectsPendingResult obj) {
QtRemoteObjects::copyStoredProperties(&obj, ds);
return ds;
}
inline QDataStream &operator>>(QDataStream &ds, QIfRemoteObjectsPendingResult &obj) {
QtRemoteObjects::copyStoredProperties(ds, &obj);
return ds;
}
QT_END_NAMESPACE
#endif //QIFREMOTEOBJECTSPENDINGRESULT_P_H
|