X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fsend_kdm_email_job.h;h=13e2fb11d354588284984416fcb72388a02c674e;hb=5cd49a43b0c453f714bb654d0f23b726b39dadec;hp=084836715f865fe6a62b52eae1e7ac1536bd202f;hpb=40b654453c2ce0b266f43c36f1b9a5d1705f983c;p=dcpomatic.git diff --git a/src/lib/send_kdm_email_job.h b/src/lib/send_kdm_email_job.h index 084836715..13e2fb11d 100644 --- a/src/lib/send_kdm_email_job.h +++ b/src/lib/send_kdm_email_job.h @@ -17,22 +17,22 @@ */ -#include -#include #include "job.h" +#include +#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 _dcp; + 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; };