kdeconnect-kde/plugins/findmyphone/findmyphoneplugin.h
Alexander Lohnau 75a8db1ec5 Use pragma once in plugins
For non-library code, this is simpler and more concise
2023-07-22 20:51:19 +00:00

27 lines
682 B
C++

/**
* SPDX-FileCopyrightText: 2014 Apoorv Parle <apparle@gmail.com>
*
* SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
*/
#pragma once
#include <QObject>
#include <core/kdeconnectplugin.h>
#define PACKET_TYPE_FINDMYPHONE_REQUEST QStringLiteral("kdeconnect.findmyphone.request")
class FindMyPhonePlugin : public KdeConnectPlugin
{
Q_OBJECT
Q_CLASSINFO("D-Bus Interface", "org.kde.kdeconnect.device.findmyphone")
public:
explicit FindMyPhonePlugin(QObject *parent, const QVariantList &args);
Q_SCRIPTABLE void ring();
QString dbusPath() const override;
bool receivePacket(const NetworkPacket &np) override;
};