X-Git-Url: https://git.carlh.net/gitweb/?p=dcpomatic.git;a=blobdiff_plain;f=src%2Flib%2Fconfig.h;h=c8ae32efd7bf02de3c66c252a971044b4722df49;hp=d2829af0884bdf374b6c2c6847fd2c78862041c5;hb=234bca29f70aeeba4fffd67f987de876ff89b6cc;hpb=53c7f717da44c6ff681bde8946875e4f39764b25 diff --git a/src/lib/config.h b/src/lib/config.h index d2829af08..c8ae32efd 100644 --- a/src/lib/config.h +++ b/src/lib/config.h @@ -469,6 +469,10 @@ public: return _player_mode; } + bool respect_kdm_validity_periods () const { + return _respect_kdm_validity_periods; + } + /* SET (mostly) */ void set_master_encoding_threads (int n) { @@ -871,6 +875,10 @@ public: maybe_set (_player_mode, m); } + void set_respect_kdm_validity_periods (bool r) { + maybe_set (_respect_kdm_validity_periods, r); + } + void changed (Property p = OTHER); boost::signals2::signal Changed; /** Emitted if read() failed on an existing Config file. There is nothing @@ -1054,6 +1062,7 @@ private: boost::optional _gdc_password; Interface _interface_complexity; PlayerMode _player_mode; + bool _respect_kdm_validity_periods; static int const _current_version;