26 lines
409 B
C++
26 lines
409 B
C++
#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
|