1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| #ifndef SYSTEMMONITOR_H
| #define SYSTEMMONITOR_H
|
| #include <QObject>
|
| class SystemMonitor : public QObject
| {
| Q_OBJECT
| public:
| explicit SystemMonitor(QObject *parent = nullptr);
|
| signals:
|
| public slots:
| };
|
| #endif // SYSTEMMONITOR_H
|
|