File indexing completed on 2024-05-19 03:56:25

0001 /*
0002     This file is part of the KDE Frameworks
0003 
0004     SPDX-FileCopyrightText: 2011 Nokia Corporation and/or its subsidiary(-ies).
0005     SPDX-FileCopyrightText: 2019 David Hallas <david@davidhallas.dk>
0006 
0007     SPDX-License-Identifier: LGPL-2.1-only WITH Qt-LGPL-exception-1.1 OR LicenseRef-Qt-Commercial
0008 */
0009 
0010 #ifndef KPROCESSLIST_P_H
0011 #define KPROCESSLIST_P_H
0012 
0013 #include "kprocesslist.h"
0014 #include <QSharedData>
0015 
0016 namespace KProcessList
0017 {
0018 class KProcessInfoPrivate : public QSharedData
0019 {
0020 public:
0021     KProcessInfoPrivate();
0022 
0023     bool valid = false;
0024     qint64 pid = -1;
0025     QString name;
0026     QString user;
0027     QString command;
0028 };
0029 
0030 } // KProcessList namespace
0031 
0032 #endif // KPROCESSLIST_P_H