aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/projectexplorer/devicesupport/processlist.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/projectexplorer/devicesupport/processlist.h')
-rw-r--r--src/plugins/projectexplorer/devicesupport/processlist.h30
1 files changed, 30 insertions, 0 deletions
diff --git a/src/plugins/projectexplorer/devicesupport/processlist.h b/src/plugins/projectexplorer/devicesupport/processlist.h
new file mode 100644
index 00000000000..caebaf22f97
--- /dev/null
+++ b/src/plugins/projectexplorer/devicesupport/processlist.h
@@ -0,0 +1,30 @@
+// Copyright (C) 2016 The Qt Company Ltd.
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
+
+#pragma once
+
+#include "deviceprocesslist.h"
+#include "idevice.h"
+
+namespace ProjectExplorer {
+
+class PROJECTEXPLORER_EXPORT ProcessList : public DeviceProcessList
+{
+ Q_OBJECT
+
+public:
+ explicit ProcessList(const IDeviceConstPtr &device, QObject *parent = nullptr);
+
+private:
+ void doUpdate() override;
+ void doKillProcess(const Utils::ProcessInfo &process) override;
+
+private:
+ void handleUpdate();
+ void reportDelayedKillStatus(const QString &errorMessage);
+
+private:
+ DeviceProcessSignalOperation::Ptr m_signalOperation;
+};
+
+} // namespace ProjectExplorer