mirror of
https://github.com/epasveer/seer.git
synced 2026-08-29 16:40:42 +08:00
43 lines
1.2 KiB
C++
43 lines
1.2 KiB
C++
// SPDX-FileCopyrightText: 2021 Ernie Pasveer <epasveer@att.net>
|
|
//
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
#pragma once
|
|
|
|
#include <QList>
|
|
#include <QString>
|
|
|
|
class QProcessInfo;
|
|
typedef QList<QProcessInfo> QProcessList;
|
|
|
|
class QProcessInfo {
|
|
public:
|
|
QProcessInfo();
|
|
|
|
static QProcessList populate();
|
|
static QProcessInfo populate(uint32_t pid);
|
|
|
|
uint32_t pid () const;
|
|
void setPid (uint32_t pid);
|
|
|
|
const QString& username () const;
|
|
void setUsername (const QString& username);
|
|
|
|
const QString& name () const;
|
|
void setName (const QString& name);
|
|
|
|
const QString& path () const;
|
|
void setPath (const QString& path);
|
|
|
|
const QString& commandLine () const;
|
|
void setCommandLine (const QString& cmd);
|
|
|
|
private:
|
|
uint32_t _pid;
|
|
QString _username;
|
|
QString _name;
|
|
QString _path;
|
|
QString _cmdLine;
|
|
};
|
|
|