summaryrefslogtreecommitdiffstats
path: root/job.h
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2009-09-05 22:30:11 -0400
committerJason A. Donenfeld <Jason@zx2c4.com>2009-09-05 22:30:11 -0400
commit04c5531ec85c6e5a4b9e8d2c166e93f32961e442 (patch)
treeed7d43f067d0b5309970d08418c969bdbee2bef7 /job.h
parentSkeleton of job system. (diff)
downloadAnyRip-04c5531ec85c6e5a4b9e8d2c166e93f32961e442.tar.xz
AnyRip-04c5531ec85c6e5a4b9e8d2c166e93f32961e442.zip
Added dvd drive skeleton.
Diffstat (limited to 'job.h')
-rw-r--r--job.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/job.h b/job.h
index b5a7513..c0b1750 100644
--- a/job.h
+++ b/job.h
@@ -9,10 +9,10 @@ class Job : public QObject
{
Q_OBJECT
public:
- Job(QObject *parent = 0);
void runJob();
virtual Video::Jobs jobType() = 0;
protected:
+ Job(QObject *parent = 0);
virtual bool executeJob() = 0;
private:
QFutureWatcher<bool> *m_watcher;