diff options
| author | Carl Hetherington <cth@carlh.net> | 2017-01-31 20:54:13 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2017-05-24 12:23:37 +0100 |
| commit | c94d763e07d9e7b029091e1ea64ba4f7758b3d5b (patch) | |
| tree | 1555280c1c566b0933e5525061335cd4168755d8 /src/lib/config.h | |
| parent | b9fa952cb97a61b7977c28f089c0b41f7d8a5d24 (diff) | |
Basic implementation of a tree view for DKDMs (#1012).
Diffstat (limited to 'src/lib/config.h')
| -rw-r--r-- | src/lib/config.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/lib/config.h b/src/lib/config.h index 4406f1649..44708a24f 100644 --- a/src/lib/config.h +++ b/src/lib/config.h @@ -40,6 +40,7 @@ class DCPContentType; class Ratio; class Cinema; class Film; +class DKDMGroup; /** @class Config * @brief A singleton class holding configuration. @@ -281,7 +282,7 @@ public: return _history; } - std::vector<dcp::EncryptedKDM> dkdms () const { + boost::shared_ptr<DKDMGroup> dkdms () const { return _dkdms; } @@ -546,7 +547,7 @@ public: } #endif - void set_dkdms (std::vector<dcp::EncryptedKDM> dkdms) { + void set_dkdms (boost::shared_ptr<DKDMGroup> dkdms) { _dkdms = dkdms; changed (); } @@ -744,7 +745,7 @@ private: bool _win32_console; #endif std::vector<boost::filesystem::path> _history; - std::vector<dcp::EncryptedKDM> _dkdms; + boost::shared_ptr<DKDMGroup> _dkdms; boost::filesystem::path _cinemas_file; bool _show_hints_before_make_dcp; bool _confirm_kdm_email; |
