File: ProcessExplorer.h

package info (click to toggle)
qnetstatview 1.5.8-2
  • links: PTS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 452 kB
  • sloc: cpp: 1,380; makefile: 4
file content (29 lines) | stat: -rw-r--r-- 468 bytes parent folder | download | duplicates (2)
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
26
27
28
29
#ifndef PROCESSEXPLORER_H
#define PROCESSEXPLORER_H

#include <QDialog>

namespace Ui {
    class ProcessExplorer;
}

class ProcessExplorer : public QDialog
{
    Q_OBJECT

    public:
        explicit ProcessExplorer(int pid,QWidget *parent = 0);
        ~ProcessExplorer();

    private:
        Ui::ProcessExplorer *ui;

        int _pid;

        void fillFields(int pid);

        QMap<QString,QString> mapFromFile(QString path);

};

#endif // PROCESSEXPLORER_H