Don't ignore font settings for DCP subtitles (#2074).
[dcpomatic.git] / src / lib / font_data.h
index 686fca7c973e21fde47534d07ec203bb8cae3b4b..7bd6d46482a55fe9c137c022b257b843657233f2 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2020 Carl Hetherington <cth@carlh.net>
+    Copyright (C) 2020-2021 Carl Hetherington <cth@carlh.net>
 
     This file is part of DCP-o-matic.
 
@@ -38,13 +38,14 @@ class Font;
 class FontData
 {
 public:
-       FontData (boost::shared_ptr<const Font> font);
+       FontData (std::shared_ptr<const Font> font);
 
        FontData (std::string id_, dcp::ArrayData data_)
                : id(id_)
                , data(data_)
        {}
 
+       /** <LoadFont> ID */
        std::string id;
        boost::optional<dcp::ArrayData> data;
 };