aboutsummaryrefslogtreecommitdiffstats
path: root/homescreen/src/Worker.h
diff options
context:
space:
mode:
authorMarius Vlad <marius.vlad@collabora.com>2022-09-30 15:56:12 +0300
committerMarius Vlad <marius.vlad@collabora.com>2022-10-07 18:31:39 +0300
commit59ecd4b02108f2830fde8f311ec632932508c6db (patch)
treeca158d5ade48ac83abe38ac8cabdfa944523c522 /homescreen/src/Worker.h
parentbf125b0779f07e9d65f83da99d16accdad72b08b (diff)
initial change to grpcsandbox/mvlad/switch-to-meson
Signed-off-by: Marius Vlad <marius.vlad@collabora.com> Change-Id: I7ff760b179b80a198ae7ea91b2f1f6239d787802
Diffstat (limited to 'homescreen/src/Worker.h')
-rw-r--r--homescreen/src/Worker.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/homescreen/src/Worker.h b/homescreen/src/Worker.h
new file mode 100644
index 0000000..16ce98e
--- /dev/null
+++ b/homescreen/src/Worker.h
@@ -0,0 +1,7 @@
+#include <QThread>
+
+class WorkerThread : public QThread
+{
+ Q_OBJECT
+ void run() override;
+};