Update xml_subtitle_test result now that subtitles are being compared; improve placem...
[dcpomatic.git] / src / lib / subrip_content.h
index 5688f81d5fe44639450e3d8d8a57d4acb9f4a9b3..0202e21d7f32eb782a81989cc27947c75ea748fe 100644 (file)
@@ -29,14 +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;
-       std::string identifier () const;
 
+       /* SubtitleContent */
+       bool has_subtitles () const {
+               return true;
+       }
+
+       static std::string const font_id;
+       
 private:
        DCPTime _length;
 };