kdeconnect-kde/plugins/ping/pingplugin.h
Alexander Lohnau e97af9dc15 Provide default implementation for KdeConnectPlugin::connected
In most plugins, we just provided a dummy implementation
2023-07-22 16:06:21 +02:00

32 lines
778 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
*/
#ifndef PINGPLUGIN_H
#define PINGPLUGIN_H
#include <QObject>
#include <core/kdeconnectplugin.h>
#define PACKET_TYPE_PING QStringLiteral("kdeconnect.ping")
class Q_DECL_EXPORT PingPlugin : public KdeConnectPlugin
{
Q_OBJECT
Q_CLASSINFO("D-Bus Interface", "org.kde.kdeconnect.device.ping")
public:
explicit PingPlugin(QObject *parent, const QVariantList &args);
~PingPlugin() override;
Q_SCRIPTABLE void sendPing();
Q_SCRIPTABLE void sendPing(const QString &customMessage);
bool receivePacket(const NetworkPacket &np) override;
QString dbusPath() const override;
};
#endif