summaryrefslogtreecommitdiffstats
path: root/videoqueue.h
blob: a587c2307e2c805ac9e700231d56131cf77a6741 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef VIDEOQUEUE_H
#define VIDEOQUEUE_H

#include <QObject>
#include <QVector>
class JobQueue;
class Video;

class VideoQueue : public QObject
{
	Q_OBJECT
public:
	VideoQueue(QObject *parent = 0);
	void newVideo(Video *video);
private:
	QVector<JobQueue*> m_jobQueues;
	void enqueueVideo(Video *video);
private slots:
	void videoChanged();
};

#endif // VIDEOQUEUE_H