X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fsend_kdm_email_job.h;h=1bba69f9b42d549f68bcd25d33060b9efb3f8076;hb=c658aec3ffd5009cbe7fa2540da5a0579e2f2e8c;hp=c401ea136338edf1a95e176effc80f6f8a89de43;hpb=4121af462c1e8b98866ca206a64678fcba96fde7;p=dcpomatic.git diff --git a/src/lib/send_kdm_email_job.h b/src/lib/send_kdm_email_job.h index c401ea136..1bba69f9b 100644 --- a/src/lib/send_kdm_email_job.h +++ b/src/lib/send_kdm_email_job.h @@ -22,17 +22,19 @@ #include class Screen; +class CinemaKDMs; +class Log; class SendKDMEmailJob : public Job { public: SendKDMEmailJob ( - boost::shared_ptr, - std::list >, - boost::filesystem::path, - boost::posix_time::ptime, - boost::posix_time::ptime, - dcp::Formulation + std::string film_name, + std::string cpl_name, + boost::posix_time::ptime from, + boost::posix_time::ptime to, + std::list cinema_kdms, + boost::shared_ptr log ); std::string name () const; @@ -40,9 +42,10 @@ public: void run (); private: - std::list > _screens; - boost::filesystem::path _cpl; + std::string _film_name; + std::string _cpl_name; boost::posix_time::ptime _from; boost::posix_time::ptime _to; - dcp::Formulation _formulation; + std::list _cinema_kdms; + boost::shared_ptr _log; };