Tidy up now we have a x-thread signaller.
[dcpomatic.git] / src / lib / job.h
index f50ed078434efb6cd3661de2802a4c528fb18c7d..1ada68e1f41fa751e1ce8ce2f475a77f37b0d03d 100644 (file)
@@ -29,8 +29,7 @@
 #include <boost/enable_shared_from_this.hpp>
 #include <sigc++/sigc++.h>
 
-class Log;
-class FilmState;
+class Film;
 class Options;
 
 /** @class Job
@@ -39,7 +38,7 @@ class Options;
 class Job : public boost::enable_shared_from_this<Job>
 {
 public:
-       Job (boost::shared_ptr<const FilmState> s, boost::shared_ptr<const Options> o, Log* l, boost::shared_ptr<Job> req);
+       Job (boost::shared_ptr<Film> s, boost::shared_ptr<Job> req);
 
        /** @return user-readable name of this job */
        virtual std::string name () const = 0;
@@ -65,13 +64,10 @@ public:
        void descend (float);
        float overall_progress () const;
 
-       void emit_finished ();
-
        boost::shared_ptr<Job> required () const {
                return _required;
        }
 
-       /** Emitted from the GUI thread */
        sigc::signal0<void> Finished;
 
 protected:
@@ -89,12 +85,8 @@ protected:
        void set_state (State);
        void set_error (std::string e);
 
-       /** FilmState for this job */
-       boost::shared_ptr<const FilmState> _fs;
-       /** options in use for this job */
-       boost::shared_ptr<const Options> _opt;
-       /** a log that this job can write to */
-       Log* _log;
+       /** Film for this job */
+       boost::shared_ptr<Film> _film;
 
 private: