aboutsummaryrefslogtreecommitdiff
path: root/rewindworkerthread.h
diff options
context:
space:
mode:
Diffstat (limited to 'rewindworkerthread.h')
-rw-r--r--rewindworkerthread.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/rewindworkerthread.h b/rewindworkerthread.h
new file mode 100644
index 0000000..0bbaeb6
--- /dev/null
+++ b/rewindworkerthread.h
@@ -0,0 +1,21 @@
+#ifndef REWINDWORKERTHREAD_H
+#define REWINDWORKERTHREAD_H
+
+#include "transitioncontrol.h"
+
+#include <QObject>
+#include <QThread>
+
+class RewindWorkerThread
+ : public QThread
+{
+ Q_OBJECT
+public:
+ RewindWorkerThread(TransitionControl *control) { m_control = control; }
+ void run();
+
+private:
+ TransitionControl *m_control;
+};
+
+#endif // REWINDWORKERTHREAD_H