kdeconnect-kde/core/backends/devicelink.cpp

30 lines
686 B
C++
Raw Permalink Normal View History

2013-06-06 04:57:06 +01:00
/**
* SPDX-FileCopyrightText: 2013 Albert Vaca <albertvaka@gmail.com>
2013-06-06 04:57:06 +01:00
*
* SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
2013-06-06 04:57:06 +01:00
*/
#include "devicelink.h"
#include "kdeconnectconfig.h"
#include "linkprovider.h"
2013-06-06 04:57:06 +01:00
DeviceLink::DeviceLink(const QString& deviceId, LinkProvider* parent)
: QObject(parent)
, m_deviceId(deviceId)
, m_linkProvider(parent)
, m_pairStatus(NotPaired)
2013-06-18 02:05:32 +01:00
{
Q_ASSERT(!deviceId.isEmpty());
setProperty("deviceId", deviceId);
}
2015-12-01 18:45:14 +00:00
void DeviceLink::setPairStatus(DeviceLink::PairStatus status)
{
if (m_pairStatus != status) {
m_pairStatus = status;
2015-12-01 18:45:14 +00:00
Q_EMIT pairStatusChanged(status);
}
}