aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/qnx/qnxdeviceprocesslist.h
blob: 0e71ae7ab01647d541a900c1844ea8f15b8a2b67 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Copyright (C) 2016 BlackBerry Limited. All rights reserved.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

#pragma once

#include <projectexplorer/devicesupport/sshdeviceprocesslist.h>

namespace Qnx::Internal {

class QnxDeviceProcessList : public ProjectExplorer::SshDeviceProcessList
{
public:
    explicit QnxDeviceProcessList(
            const ProjectExplorer::IDeviceConstPtr &device, QObject *parent = nullptr);

private:
    QString listProcessesCommandLine() const override;
    QList<Utils::ProcessInfo> buildProcessList(const QString &listProcessesReply) const override;
};

} // Qnx::Internal