X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fsend_kdm_email_job.h;h=13e2fb11d354588284984416fcb72388a02c674e;hb=5cd49a43b0c453f714bb654d0f23b726b39dadec;hp=af84a13af2b959c034e342c3dd9d2b56448c8a12;hpb=cc27c2716f755305d67f1e1ba828ecf37f8405dd;p=dcpomatic.git diff --git a/src/lib/send_kdm_email_job.h b/src/lib/send_kdm_email_job.h index af84a13af..13e2fb11d 100644 --- a/src/lib/send_kdm_email_job.h +++ b/src/lib/send_kdm_email_job.h @@ -17,31 +17,32 @@ */ -#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; + std::string json_name () const; 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; };