blob: aaa344a3e49d03a69f1c5f7e2229084b88b5a140 (
plain) (
blame)
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
|
#ifndef REMOVEWORKER_H
#define REMOVEWORKER_H
#include <QObject>
#include <QLocalSocket>
#include <QApplication>
#include <QFile>
#include <QJsonDocument>
#include <QJsonObject>
#include <QDir>
#include <QTimer>
#include <QStandardPaths>
class RemoveWorker : public QObject
{
Q_OBJECT
public:
explicit RemoveWorker(QObject *parent = nullptr);
signals:
public slots:
bool startWork();
};
#endif // REMOVEWORKER_H
|