summaryrefslogtreecommitdiff
path: root/src/lib/send_kdm_email_job.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2014-06-26 19:15:56 +0100
committerCarl Hetherington <cth@carlh.net>2014-06-26 19:15:56 +0100
commit075f418cc6d9be06bed7a1d98257ae8d17ef3019 (patch)
treea5a6924da614ea0c65657802fffd291e67487532 /src/lib/send_kdm_email_job.h
parentd1125d09c7741d05b57b1520531a0451663ad66c (diff)
Support different KDM formulations.
Diffstat (limited to 'src/lib/send_kdm_email_job.h')
-rw-r--r--src/lib/send_kdm_email_job.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/lib/send_kdm_email_job.h b/src/lib/send_kdm_email_job.h
index f4d154a91..8a8903040 100644
--- a/src/lib/send_kdm_email_job.h
+++ b/src/lib/send_kdm_email_job.h
@@ -18,6 +18,7 @@
*/
#include <boost/filesystem.hpp>
+#include <libdcp/kdm.h>
#include "job.h"
class Screen;
@@ -30,7 +31,8 @@ public:
std::list<boost::shared_ptr<Screen> >,
boost::filesystem::path,
boost::posix_time::ptime,
- boost::posix_time::ptime
+ boost::posix_time::ptime,
+ libdcp::KDM::Formulation
);
std::string name () const;
@@ -42,4 +44,5 @@ private:
boost::filesystem::path _dcp;
boost::posix_time::ptime _from;
boost::posix_time::ptime _to;
+ libdcp::KDM::Formulation _formulation;
};