Update xml_subtitle_test result now that subtitles are being compared; improve placem...
[dcpomatic.git] / src / lib / subrip_content.h
index 7da6e71f7b49e262e0cb741f72bb6fcfcc897116..0202e21d7f32eb782a81989cc27947c75ea748fe 100644 (file)
@@ -29,13 +29,21 @@ public:
                return boost::dynamic_pointer_cast<SubRipContent> (Content::shared_from_this ());
        }
        
-       void examine (boost::shared_ptr<Job>);
+       /* Content */
+       void examine (boost::shared_ptr<Job>, bool calculate_digest);
        std::string summary () const;
        std::string technical_summary () const;
        std::string information () const;
        void as_xml (xmlpp::Node *) const;
        DCPTime full_length () const;
 
+       /* SubtitleContent */
+       bool has_subtitles () const {
+               return true;
+       }
+
+       static std::string const font_id;
+       
 private:
        DCPTime _length;
 };