Fix the build for older macOS.
[dcpomatic.git] / src / lib / dcp_subtitle_content.h
index c29944605f6f359525d6e4e375827847a847e026..f4a767d210c6c587630c99132db208274c7fd122 100644 (file)
 class DCPSubtitleContent : public DCPSubtitle, public Content
 {
 public:
-       DCPSubtitleContent (boost::shared_ptr<const Film>, boost::filesystem::path);
-       DCPSubtitleContent (boost::shared_ptr<const Film>, cxml::ConstNodePtr, int);
+       DCPSubtitleContent (boost::filesystem::path);
+       DCPSubtitleContent (cxml::ConstNodePtr, int);
 
-       void examine (boost::shared_ptr<Job>);
+       void examine (std::shared_ptr<const Film> film, std::shared_ptr<Job>);
        std::string summary () const;
        std::string technical_summary () const;
-       void as_xml (xmlpp::Node *) const;
-       DCPTime full_length () const;
+       void as_xml (xmlpp::Node *, bool with_paths) const;
+       dcpomatic::DCPTime full_length (std::shared_ptr<const Film> film) const;
+       dcpomatic::DCPTime approximate_length () const;
 
 private:
-       ContentTime _length;
+       dcpomatic::ContentTime _length;
 };