diff options
| author | Carl Hetherington <cth@carlh.net> | 2015-10-11 22:18:57 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2015-10-11 22:18:57 +0100 |
| commit | c658aec3ffd5009cbe7fa2540da5a0579e2f2e8c (patch) | |
| tree | b460bea7792310d4c89a15601fea04d9db83b52c /src/lib/send_kdm_email_job.h | |
| parent | 27bd2c44278ccf181b11ba961649a3e9b3ae03af (diff) | |
Add debug option to log SMTP session transcripts.
Diffstat (limited to 'src/lib/send_kdm_email_job.h')
| -rw-r--r-- | src/lib/send_kdm_email_job.h | 5 |
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 13e2fb11d..1bba69f9b 100644 --- a/src/lib/send_kdm_email_job.h +++ b/src/lib/send_kdm_email_job.h @@ -23,6 +23,7 @@ class Screen; class CinemaKDMs; +class Log; class SendKDMEmailJob : public Job { @@ -32,7 +33,8 @@ public: std::string cpl_name, boost::posix_time::ptime from, boost::posix_time::ptime to, - std::list<CinemaKDMs> cinema_kdms + std::list<CinemaKDMs> cinema_kdms, + boost::shared_ptr<Log> log ); std::string name () const; @@ -45,4 +47,5 @@ private: boost::posix_time::ptime _from; boost::posix_time::ptime _to; std::list<CinemaKDMs> _cinema_kdms; + boost::shared_ptr<Log> _log; }; |
