summaryrefslogtreecommitdiffstats
path: root/src/helper/remoteobjects/qifremoteobjectspendingresult.cpp
blob: 9d670f0b7ca02b120bfb37dba800d5b464fbc961 (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
// 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

#include "qifremoteobjectspendingresult.h"

QT_BEGIN_NAMESPACE

namespace qtif_private {
    Q_LOGGING_CATEGORY(qLcQtIfRoHelper, "qt.if.remoteobjects.helper", QtInfoMsg)
}

QIfRemoteObjectsPendingResult::QIfRemoteObjectsPendingResult()
    : m_id()
    , m_failed()
{}

QIfRemoteObjectsPendingResult::QIfRemoteObjectsPendingResult(quint64 id, bool failed)
    : m_id(id)
    , m_failed(failed)
{}

quint64 QIfRemoteObjectsPendingResult::id() const
{
    return m_id;
}

void QIfRemoteObjectsPendingResult::setId(quint64 id)
{
    if (id != m_id)
        m_id = id;
}

bool QIfRemoteObjectsPendingResult::failed() const
{
    return m_failed;
}

void QIfRemoteObjectsPendingResult::setFailed(bool failed)
{
    if (failed != m_failed)
        m_failed = failed;
}

QT_END_NAMESPACE

#include "moc_qifremoteobjectspendingresult.cpp"