aboutsummaryrefslogtreecommitdiff
path: root/rewindworkerthread.h
blob: 0bbaeb6b331bc76c5a4207e9348e44db57d8d227 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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