diff options
Diffstat (limited to 'src/lib/subrip_content.h')
| -rw-r--r-- | src/lib/subrip_content.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/lib/subrip_content.h b/src/lib/subrip_content.h index 7da6e71f7..d2dcdee00 100644 --- a/src/lib/subrip_content.h +++ b/src/lib/subrip_content.h @@ -29,6 +29,7 @@ public: return boost::dynamic_pointer_cast<SubRipContent> (Content::shared_from_this ()); } + /* Content */ void examine (boost::shared_ptr<Job>); std::string summary () const; std::string technical_summary () const; @@ -36,6 +37,11 @@ public: void as_xml (xmlpp::Node *) const; DCPTime full_length () const; + /* SubtitleContent */ + bool has_subtitles () const { + return true; + } + private: DCPTime _length; }; |
