]> git.sesse.net Git - kdenlive/blobdiff - src/projecttree/meltjob.h
Moves AbstractMonitor into widgets folder.
[kdenlive] / src / projecttree / meltjob.h
index 57b2e813cff96a86014057ee2171ffd2024f70e0..b1a426869d6025658242d11bae105e316be1eec2 100644 (file)
 #define MELTJOB
 
 #include <QObject>
-#include <QProcess>
 
 #include "abstractclipjob.h"
 
 class KUrl;
 
 namespace Mlt{
-        class Profile;
-        class Producer;
-        class Consumer;
-        class Filter;
-        class Event;
-};
+class Profile;
+class Producer;
+class Consumer;
+class Filter;
+class Event;
+}
 
 class MeltJob : public AbstractClipJob
 {
     Q_OBJECT
 
 public:
-    MeltJob(CLIPTYPE cType, const QString &id, const QStringList& parameters, const stringMap& extraParams = stringMap());
+    MeltJob(ClipType cType, const QString &id, const QStringList& parameters, const stringMap& extraParams = stringMap());
     virtual ~ MeltJob();
     const QString destination() const;
     void startJob();
     stringMap cancelProperties();
     bool addClipToProject;
     const QString statusMessage();
-    void setStatus(CLIPJOBSTATUS status);
+    void setStatus(ClipJobStatus status);
     void setProducer(Mlt::Producer *producer, const KUrl &url);
     void emitFrameNumber(int pos);
     /** Make the job work on a project tree clip. */