diff options
| author | Carl Hetherington <cth@carlh.net> | 2014-07-10 22:41:48 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2014-07-10 22:41:48 +0100 |
| commit | a8af9a0b57b853b8a8cd8fa35adb3fc967d59ee7 (patch) | |
| tree | 9493b374153de99bc220138361420c5abe85b16e /src/lib/dcp_content.h | |
| parent | 8d58a7c5f4320ad5c111e336c45e44d6b51ab509 (diff) | |
Add has_subtitles method to SubtitleContent; tidy up timeline display a bit.
Diffstat (limited to 'src/lib/dcp_content.h')
| -rw-r--r-- | src/lib/dcp_content.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/lib/dcp_content.h b/src/lib/dcp_content.h index 7b7e85d9d..60b7142de 100644 --- a/src/lib/dcp_content.h +++ b/src/lib/dcp_content.h @@ -47,6 +47,9 @@ public: void as_xml (xmlpp::Node *) const; std::string identifier () const; + /* SubtitleContent */ + bool has_subtitles () const; + boost::filesystem::path directory () const { boost::mutex::scoped_lock lm (_mutex); return _directory; @@ -56,5 +59,6 @@ private: void read_directory (boost::filesystem::path); std::string _name; + bool _has_subtitles; boost::filesystem::path _directory; }; |
