Assorted C++11/formatting cleanups.
[dcpomatic.git] / src / lib / player_text.h
index 232ba65166f97b9f30d6eec9a4e0ff8c829139f0..cd4be984c9551e5f1d8eeabbb86255155a0c04d5 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2014-2018 Carl Hetherington <cth@carlh.net>
+    Copyright (C) 2014-2021 Carl Hetherington <cth@carlh.net>
 
     This file is part of DCP-o-matic.
 
 
 */
 
+
 #ifndef DCPOMATIC_PLAYER_CAPTION_H
 #define DCPOMATIC_PLAYER_CAPTION_H
 
+
 #include "bitmap_text.h"
 #include "dcpomatic_time.h"
 #include "string_text.h"
 
+
 namespace dcpomatic {
        class Font;
 }
 
+
 /** A set of text (subtitle/CCAP) which span the same time period */
 class PlayerText
 {
 public:
-       void add_fonts (std::list<std::shared_ptr<dcpomatic::Font> > fonts_);
+       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 */
@@ -41,4 +45,5 @@ public:
        std::list<StringText> string;
 };
 
+
 #endif