X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fstring_text_file_content.h;h=30f543381bf68fd0390b025fbac30a888210b881;hb=00301ddfa6a7f4c79593d8c86a0ff208aa3be68a;hp=aec86181ccc8ab58adb902c8a6c4e6bc25345a16;hpb=b531246b859977e32cad5b1d125bc0c867c1e1ae;p=dcpomatic.git diff --git a/src/lib/string_text_file_content.h b/src/lib/string_text_file_content.h index aec86181c..30f543381 100644 --- a/src/lib/string_text_file_content.h +++ b/src/lib/string_text_file_content.h @@ -32,7 +32,7 @@ class StringTextFileContent : public Content { public: StringTextFileContent (boost::filesystem::path); - StringTextFileContent (cxml::ConstNodePtr, int); + StringTextFileContent (cxml::ConstNodePtr, int, std::list&); std::shared_ptr shared_from_this () { return std::dynamic_pointer_cast (Content::shared_from_this ()); @@ -42,13 +42,15 @@ public: return std::dynamic_pointer_cast (Content::shared_from_this ()); } - void examine (std::shared_ptr film, std::shared_ptr); - std::string summary () const; - std::string technical_summary () const; - void as_xml (xmlpp::Node *, bool with_paths) const; - dcpomatic::DCPTime full_length (std::shared_ptr film) const; - dcpomatic::DCPTime approximate_length () const; - std::string identifier () const; + void examine (std::shared_ptr film, std::shared_ptr) override; + std::string summary () const override; + std::string technical_summary () const override; + void as_xml (xmlpp::Node *, bool with_paths) const override; + dcpomatic::DCPTime full_length (std::shared_ptr film) const override; + dcpomatic::DCPTime approximate_length () const override; + std::string identifier () const override; + + void check_font_ids(); private: dcpomatic::ContentTime _length;