aboutsummaryrefslogtreecommitdiff
path: root/installer/process/removeworker.h
diff options
context:
space:
mode:
authorVictor Tran <vicr12345@gmail.com>2018-07-13 00:39:24 +1000
committerVictor Tran <vicr12345@gmail.com>2018-07-13 00:39:24 +1000
commitabc4021919f406ee25e101122144879f8770d51d (patch)
tree9f835b216b8481e84fb988e495da42c1aa1aa20a /installer/process/removeworker.h
parent2adcd4f24eca2fa529c42fc1165319bcc4ea179e (diff)
downloadtheInstaller-abc4021919f406ee25e101122144879f8770d51d.tar.gz
theInstaller-abc4021919f406ee25e101122144879f8770d51d.tar.bz2
theInstaller-abc4021919f406ee25e101122144879f8770d51d.zip
Uninstall support
Diffstat (limited to 'installer/process/removeworker.h')
-rw-r--r--installer/process/removeworker.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/installer/process/removeworker.h b/installer/process/removeworker.h
new file mode 100644
index 0000000..aaa344a
--- /dev/null
+++ b/installer/process/removeworker.h
@@ -0,0 +1,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