Add CCWakelineAbstraction

This commit is contained in:
2024-06-10 11:50:34 +02:00
parent 06d43009ad
commit 1199dbfd30
5 changed files with 85 additions and 1 deletions

View File

@@ -0,0 +1,25 @@
#ifndef CCWAKELINEABSTRACTION_H
#define CCWAKELINEABSTRACTION_H
#include <QObject>
class hwinf;
class QFileSystemWatcher;
class CCWakelineAbstraction : public QObject
{
Q_OBJECT
public:
CCWakelineAbstraction(hwinf *dc, QObject *parent = nullptr);
private:
hwinf *dc;
QFileSystemWatcher *ccWakeMonitor;
void ccWakeChanged(const QString &path);
};
#endif // CCWAKELINEABSTRACTION_H