diff options
| author | Carl Hetherington <cth@carlh.net> | 2018-09-14 22:34:50 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2018-09-14 22:34:50 +0100 |
| commit | 18fbb7b578eb0626c269bbb90de205c2d8fc3326 (patch) | |
| tree | 298a7dad0db8c62268e22e2a9c345065362177b2 /src/lib/config.h | |
| parent | ddf2e8d432e7a4bbed576d72b28d77c3134cee14 (diff) | |
Very basic player logging.v2.13.49
Diffstat (limited to 'src/lib/config.h')
| -rw-r--r-- | src/lib/config.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/lib/config.h b/src/lib/config.h index c8ae32efd..37c036587 100644 --- a/src/lib/config.h +++ b/src/lib/config.h @@ -473,6 +473,10 @@ public: return _respect_kdm_validity_periods; } + boost::optional<boost::filesystem::path> player_log_file () const { + return _player_log_file; + } + /* SET (mostly) */ void set_master_encoding_threads (int n) { @@ -879,6 +883,18 @@ public: maybe_set (_respect_kdm_validity_periods, r); } + void set_player_log_file (boost::filesystem::path p) { + maybe_set (_player_log_file, p); + } + + void unset_player_log_file () { + if (!_player_log_file) { + return; + } + _player_log_file = boost::none; + changed (); + } + void changed (Property p = OTHER); boost::signals2::signal<void (Property)> Changed; /** Emitted if read() failed on an existing Config file. There is nothing @@ -1063,6 +1079,7 @@ private: Interface _interface_complexity; PlayerMode _player_mode; bool _respect_kdm_validity_periods; + boost::optional<boost::filesystem::path> _player_log_file; static int const _current_version; |
