Fix ID numbering.
[dcpomatic.git] / src / lib / player_subtitles.h
index 62b77c077f73026e1f6b1a133a9af6aa4ba5a4ee..65de500f63d265ca7bea8b6bbd5144122708a3e5 100644 (file)
 
 */
 
+#ifndef DCPOMATIC_PLAYER_SUBTITLES_H
+#define DCPOMATIC_PLAYER_SUBTITLES_H
+
+#include "image_subtitle.h"
+#include <dcp/subtitle_string.h>
+
 class PlayerSubtitles
 {
 public:
@@ -30,5 +36,7 @@ public:
 
        /** ImageSubtitles, with their rectangles transformed as specified by their content */
        std::list<ImageSubtitle> image;
-       std::list<dcp::SubtitleString> text; 
+       std::list<dcp::SubtitleString> text;
 };
+
+#endif