kdeconnect-kde/plugins/runcommand/runcommandplugin.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

30 lines
623 B
C++

/**
* SPDX-FileCopyrightText: 2015 Albert Vaca <albertvaka@gmail.com>
*
* SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
*/
#pragma once
#include <QObject>
#include <QFile>
#include <QFileSystemWatcher>
#include <QMap>
#include <QPair>
#include <QString>
#include <core/kdeconnectplugin.h>
class Q_DECL_EXPORT RunCommandPlugin : public KdeConnectPlugin
{
Q_OBJECT
public:
explicit RunCommandPlugin(QObject *parent, const QVariantList &args);
bool receivePacket(const NetworkPacket &np) override;
void connected() override;
private:
void sendConfig();
};