2013-06-06 04:57:06 +01:00
|
|
|
/**
|
2020-08-17 10:48:10 +01:00
|
|
|
* SPDX-FileCopyrightText: 2013 Albert Vaca <albertvaka@gmail.com>
|
2013-06-06 04:57:06 +01:00
|
|
|
*
|
2020-08-17 10:48:10 +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"
|
2023-06-27 12:10:59 +01:00
|
|
|
|
2013-09-09 17:35:56 +01:00
|
|
|
#include "linkprovider.h"
|
2013-06-06 04:57:06 +01:00
|
|
|
|
2022-09-10 22:23:52 +01:00
|
|
|
DeviceLink::DeviceLink(const QString &deviceId, LinkProvider *parent)
|
2013-07-03 02:52:44 +01:00
|
|
|
: QObject(parent)
|
2013-06-18 02:05:32 +01:00
|
|
|
{
|
2023-06-27 12:10:59 +01:00
|
|
|
connect(this, &QObject::destroyed, [this, deviceId, parent]() {
|
|
|
|
parent->onLinkDestroyed(deviceId, this);
|
|
|
|
});
|
2013-09-09 17:35:56 +01:00
|
|
|
}
|
2023-07-26 09:15:11 +01:00
|
|
|
|
|
|
|
#include "moc_devicelink.cpp"
|