Lots of #include <iostream>s for Arch.
[dcpomatic.git] / src / lib / subtitle_content.cc
index a10e23cafea324a48fe9333e4858c5b30f294771..da3b97e2ffd3942f87f452181b97fe5315de8f63 100644 (file)
@@ -24,7 +24,9 @@
 #include "font.h"
 #include "raw_convert.h"
 #include <libcxml/cxml.h>
+#include <libxml++/libxml++.h>
 #include <boost/foreach.hpp>
+#include <iostream>
 
 #include "i18n.h"
 
@@ -268,6 +270,13 @@ SubtitleContent::identifier () const
          << "_" << raw_convert<string> (subtitle_x_offset())
          << "_" << raw_convert<string> (subtitle_y_offset());
 
+       /* XXX: I suppose really _fonts shouldn't be in here, since not all
+          types of subtitle content involve fonts.
+       */
+       BOOST_FOREACH (shared_ptr<Font> f, _fonts) {
+               s << f->file().get_value_or ("Default");
+       }
+
        /* The language is for metadata only, and doesn't affect
           how this content looks.
        */