Attempt to tidy up internal APIs slightly.
[dcpomatic.git] / src / lib / player_subtitles.h
index a202cf4f846260b1ff4ca729ebb5ec23c315b98f..e1a104f2127c89a4d56e865f513f5f5320baab7b 100644 (file)
 
 class Font;
 
+/** A set of subtitles which span the same time period */
 class PlayerSubtitles
 {
 public:
-       PlayerSubtitles (DCPTime f)
-               : from (f)
-       {}
-
        void add_fonts (std::list<boost::shared_ptr<Font> > fonts_);
-
-       DCPTime from;
        std::list<boost::shared_ptr<Font> > fonts;
 
        /** ImageSubtitles, with their rectangles transformed as specified by their content */