Deskflow 1.22.0.197
Keyboard and mouse sharing utility
Loading...
Searching...
No Matches
CommandProcess.h
Go to the documentation of this file.
1/*
2 * Deskflow -- mouse and keyboard sharing utility
3 * SPDX-FileCopyrightText: (C) 2014 Symless Ltd.
4 * SPDX-License-Identifier: GPL-2.0-only WITH LicenseRef-OpenSSL-Exception
5 */
6
7#pragma once
8
9#include <QObject>
10#include <QStringList>
11
12class CommandProcess : public QObject
13{
14 Q_OBJECT
15
16public:
17 CommandProcess(QString cmd, QStringList arguments, QString input = "");
18
19Q_SIGNALS:
20 void finished();
21
22public Q_SLOTS:
23 QString run();
24
25private:
26 QString m_Command;
27 QStringList m_Arguments;
28 QString m_Input;
29};
static int cmd
Definition ArchNetworkWinsock.cpp:34
QString run()
Definition CommandProcess.cpp:19
CommandProcess(QString cmd, QStringList arguments, QString input="")
Definition CommandProcess.cpp:11