31 lines
609 B
C
31 lines
609 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 RunCommandPlugin : public KdeConnectPlugin
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit RunCommandPlugin(QObject *parent, const QVariantList &args);
|
||
|
|
||
|
void receivePacket(const NetworkPacket &np) override;
|
||
|
void connected() override;
|
||
|
|
||
|
private:
|
||
|
void sendConfig();
|
||
|
};
|