064ddfa3fe
We now have a single PairingHandler for all types of links. The implementation now is more aligned with the one for Android.
20 lines
476 B
C++
20 lines
476 B
C++
/**
|
|
* SPDX-FileCopyrightText: 2013 Albert Vaca <albertvaka@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
|
|
*/
|
|
|
|
#include "devicelink.h"
|
|
#include "kdeconnectconfig.h"
|
|
#include "linkprovider.h"
|
|
|
|
DeviceLink::DeviceLink(const QString &deviceId, LinkProvider *parent)
|
|
: QObject(parent)
|
|
, m_deviceId(deviceId)
|
|
, m_linkProvider(parent)
|
|
{
|
|
Q_ASSERT(!deviceId.isEmpty());
|
|
|
|
setProperty("deviceId", deviceId);
|
|
}
|
|
|