You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
355 B
23 lines
355 B
10 months ago
|
#ifndef IPCFILEWATCHER_H
|
||
|
#define IPCFILEWATCHER_H
|
||
|
|
||
|
#include <QObject>
|
||
|
|
||
|
class IPCFileWatcher : public QObject
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
explicit IPCFileWatcher(QObject *parent = nullptr);
|
||
|
bool didInitFail();
|
||
|
|
||
|
signals:
|
||
|
void showWindowFlagDetected();
|
||
|
|
||
|
private:
|
||
|
bool initFailed;
|
||
|
|
||
|
void checkForShowWindowFile();
|
||
|
};
|
||
|
|
||
|
#endif // IPCFILEWATCHER_H
|