diff options
| author | Carl Hetherington <cth@carlh.net> | 2017-03-03 19:55:41 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2017-03-03 19:55:41 +0000 |
| commit | e4d7f575fab50b6d255821d6d6a8171c8e1f13f6 (patch) | |
| tree | 49f603a388e8a8ca3107e6106e13dcdb3fbdbc93 /src/lib/config.h | |
| parent | ccc8409dceedcf71872b2846b9b4a4dea9042bda (diff) | |
Add options to write KDMs to separate directories / ZIP files.
Diffstat (limited to 'src/lib/config.h')
| -rw-r--r-- | src/lib/config.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/lib/config.h b/src/lib/config.h index 8b8d7c38a..5bd8df97d 100644 --- a/src/lib/config.h +++ b/src/lib/config.h @@ -285,6 +285,10 @@ public: return _confirm_kdm_email; } + dcp::NameFormat kdm_container_name_format () const { + return _kdm_container_name_format; + } + dcp::NameFormat kdm_filename_format () const { return _kdm_filename_format; } @@ -512,6 +516,10 @@ public: maybe_set (_confirm_kdm_email, s); } + void set_kdm_container_name_format (dcp::NameFormat n) { + maybe_set (_kdm_container_name_format, n); + } + void set_kdm_filename_format (dcp::NameFormat n) { maybe_set (_kdm_filename_format, n); } @@ -649,6 +657,7 @@ private: bool _show_hints_before_make_dcp; bool _confirm_kdm_email; dcp::NameFormat _kdm_filename_format; + dcp::NameFormat _kdm_container_name_format; dcp::NameFormat _dcp_metadata_filename_format; dcp::NameFormat _dcp_asset_filename_format; |
