diff options
Diffstat (limited to 'src/smpte_subtitle_content.cc')
| -rw-r--r-- | src/smpte_subtitle_content.cc | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/smpte_subtitle_content.cc b/src/smpte_subtitle_content.cc index d34c1dbe..e54b33c3 100644 --- a/src/smpte_subtitle_content.cc +++ b/src/smpte_subtitle_content.cc @@ -67,3 +67,11 @@ SMPTESubtitleContent::SMPTESubtitleContent (boost::filesystem::path file, bool m parse_common (xml, font_nodes); } + +list<shared_ptr<LoadFont> > +SMPTESubtitleContent::load_font_nodes () const +{ + list<shared_ptr<LoadFont> > lf; + copy (_load_font_nodes.begin(), _load_font_nodes.end(), back_inserter (lf)); + return lf; +} |
