diff options
| author | Carl Hetherington <cth@carlh.net> | 2014-12-15 15:02:25 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2014-12-15 15:02:25 +0000 |
| commit | 6e4224ae8c9efa7f9e56e511531b7f53d8bd4f9c (patch) | |
| tree | 46eced91e13220246518fe63abd45fd202906312 /src | |
| parent | 71ebf0a6ba2e990bfe30a1c109f5cad0fcd3ee14 (diff) | |
Add an accessor for _load_font_nodes.
Diffstat (limited to 'src')
| -rw-r--r-- | src/interop_subtitle_content.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/interop_subtitle_content.h b/src/interop_subtitle_content.h index cd8d7bbd..df834356 100644 --- a/src/interop_subtitle_content.h +++ b/src/interop_subtitle_content.h @@ -30,8 +30,12 @@ public: InteropSubtitleContent (std::string movie_title, std::string language); InteropSubtitleContent (boost::filesystem::path file); - Glib::ustring xml_as_string () const; + std::list<boost::shared_ptr<InteropLoadFont> > load_font_nodes () const { + return _load_font_nodes; + } + Glib::ustring xml_as_string () const; + private: std::string _movie_title; std::list<boost::shared_ptr<InteropLoadFont> > _load_font_nodes; |
