aboutsummaryrefslogtreecommitdiffstats
path: root/src/libs/utils/processinfo.h
blob: 57d6dcc1164d6c306a98b29b06acc860255e4363 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// Copyright (C) 2022 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0

#pragma once

#include "utils_global.h"

#include <QList>
#include <QString>

namespace Utils {

class QTCREATOR_UTILS_EXPORT ProcessInfo
{
public:
    qint64 processId = 0;
    QString executable;
    QString commandLine;

    bool operator<(const ProcessInfo &other) const;

    static QList<ProcessInfo> processInfoList();
};

} // namespace Utils