kdeconnect-kde/plugins/sendnotifications/sendnotificationsplugin.cpp
Alexander Lohnau 7d685c94cc Discard unused params more elegantly
By commenting out the var nime, we get compile-time checks

Also, we can omit them for slots
2023-07-28 16:18:59 +02:00

33 lines
863 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 "sendnotificationsplugin.h"
#include "notificationslistener.h"
#include "plugin_sendnotification_debug.h"
#include <KPluginFactory>
K_PLUGIN_CLASS_WITH_JSON(SendNotificationsPlugin, "kdeconnect_sendnotifications.json")
SendNotificationsPlugin::SendNotificationsPlugin(QObject *parent, const QVariantList &args)
: KdeConnectPlugin(parent, args)
{
notificationsListener = new NotificationsListener(this);
}
SendNotificationsPlugin::~SendNotificationsPlugin()
{
delete notificationsListener;
}
bool SendNotificationsPlugin::receivePacket(const NetworkPacket & /*np*/)
{
return true;
}
#include "moc_sendnotificationsplugin.cpp"
#include "sendnotificationsplugin.moc"