aboutsummaryrefslogtreecommitdiff
path: root/rewindworkerthread.h
diff options
context:
space:
mode:
Diffstat (limited to 'rewindworkerthread.h')
-rw-r--r--rewindworkerthread.h21
1 files changed, 0 insertions, 21 deletions
diff --git a/rewindworkerthread.h b/rewindworkerthread.h
deleted file mode 100644
index 0bbaeb6..0000000
--- a/rewindworkerthread.h
+++ /dev/null
@@ -1,21 +0,0 @@
-#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