Merge master.
[dcpomatic.git] / src / lib / subrip_content.h
index 7da6e71f7b49e262e0cb741f72bb6fcfcc897116..d2dcdee00b09cce5e1b014dba924fd0b09bea8ff 100644 (file)
@@ -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;
 };