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