Supporters update.
[dcpomatic.git] / src / lib / player_text.h
index cd4be984c9551e5f1d8eeabbb86255155a0c04d5..5921b28f6f5a1c3af9e550e86390c5d440f14ed0 100644 (file)
@@ -24,7 +24,6 @@
 
 
 #include "bitmap_text.h"
-#include "dcpomatic_time.h"
 #include "string_text.h"
 
 
@@ -37,12 +36,9 @@ namespace dcpomatic {
 class PlayerText
 {
 public:
-       void add_fonts (std::list<std::shared_ptr<dcpomatic::Font>> fonts_);
-       std::list<std::shared_ptr<dcpomatic::Font> > fonts;
-
        /** BitmapTexts, with their rectangles transformed as specified by their content */
-       std::list<BitmapText> bitmap;
-       std::list<StringText> string;
+       std::vector<BitmapText> bitmap;
+       std::vector<StringText> string;
 };