X-Git-Url: https://git.carlh.net/gitweb/?p=dcpomatic.git;a=blobdiff_plain;f=src%2Flib%2Fsend_kdm_email_job.h;h=13e2fb11d354588284984416fcb72388a02c674e;hp=c401ea136338edf1a95e176effc80f6f8a89de43;hb=5cd49a43b0c453f714bb654d0f23b726b39dadec;hpb=89e202dd965d8f9cc94b965c804a31b7e01adb94 diff --git a/src/lib/send_kdm_email_job.h b/src/lib/send_kdm_email_job.h index c401ea136..13e2fb11d 100644 --- a/src/lib/send_kdm_email_job.h +++ b/src/lib/send_kdm_email_job.h @@ -22,17 +22,17 @@ #include class Screen; +class CinemaKDMs; 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 ); std::string name () const; @@ -40,9 +40,9 @@ 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; };