summaryrefslogtreecommitdiff
path: root/src/lib/send_kdm_email_job.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2015-10-07 14:48:55 +0100
committerCarl Hetherington <cth@carlh.net>2015-10-09 13:44:56 +0100
commit5cd49a43b0c453f714bb654d0f23b726b39dadec (patch)
tree4d418d258073f2e3b6aed1a65c4d7456a3a89292 /src/lib/send_kdm_email_job.h
parent89e202dd965d8f9cc94b965c804a31b7e01adb94 (diff)
Connect dcpomatic_kdm to backend.
Diffstat (limited to 'src/lib/send_kdm_email_job.h')
-rw-r--r--src/lib/send_kdm_email_job.h18
1 files changed, 9 insertions, 9 deletions
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 <boost/filesystem.hpp>
class Screen;
+class CinemaKDMs;
class SendKDMEmailJob : public Job
{
public:
SendKDMEmailJob (
- boost::shared_ptr<const Film>,
- std::list<boost::shared_ptr<Screen> >,
- 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<CinemaKDMs> cinema_kdms
);
std::string name () const;
@@ -40,9 +40,9 @@ public:
void run ();
private:
- std::list<boost::shared_ptr<Screen> > _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<CinemaKDMs> _cinema_kdms;
};