summaryrefslogtreecommitdiffstats
path: root/libutil/include/jobqueue.h
diff options
context:
space:
mode:
Diffstat (limited to 'libutil/include/jobqueue.h')
-rw-r--r--libutil/include/jobqueue.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/libutil/include/jobqueue.h b/libutil/include/jobqueue.h
index 061686f6..26f49307 100644
--- a/libutil/include/jobqueue.h
+++ b/libutil/include/jobqueue.h
@@ -1,5 +1,6 @@
#pragma once
#include <QtCore>
+#include "libutil_config.h"
enum JobStatus
{
@@ -11,7 +12,7 @@ enum JobStatus
class JobList;
-class Job : public QObject
+class LIBUTIL_EXPORT Job : public QObject
{
Q_OBJECT
protected:
@@ -30,7 +31,7 @@ typedef QSharedPointer<Job> JobPtr;
/**
* A list of jobs, to be processed one by one.
*/
-class JobList : public QObject
+class LIBUTIL_EXPORT JobList : public QObject
{
friend class JobListQueue;
Q_OBJECT
@@ -127,7 +128,7 @@ typedef QSharedPointer<JobList> JobListPtr;
/**
* A queue of job lists! The job lists fail or finish as units.
*/
-class JobListQueue : public QObject
+class LIBUTIL_EXPORT JobListQueue : public QObject
{
Q_OBJECT
public: