summaryrefslogtreecommitdiff
path: root/src/lib/player_text.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2019-05-08 23:56:32 +0100
committerCarl Hetherington <cth@carlh.net>2019-05-10 23:43:55 +0100
commitf41818f14369f170475b7f2bde1a2dd856517b14 (patch)
tree2fd7d07fb63e46e8ad2964917cff5704d1893f85 /src/lib/player_text.h
parentc4403784febdbdd42e9c32e67fadb147f11fe566 (diff)
Put Font and Screen into dcpomatic namespace.
Diffstat (limited to 'src/lib/player_text.h')
-rw-r--r--src/lib/player_text.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/lib/player_text.h b/src/lib/player_text.h
index 3f5066314..fb1d846d8 100644
--- a/src/lib/player_text.h
+++ b/src/lib/player_text.h
@@ -25,14 +25,16 @@
#include "dcpomatic_time.h"
#include "string_text.h"
-class Font;
+namespace dcpomatic {
+ class Font;
+}
/** A set of text (subtitle/CCAP) which span the same time period */
class PlayerText
{
public:
- void add_fonts (std::list<boost::shared_ptr<Font> > fonts_);
- std::list<boost::shared_ptr<Font> > fonts;
+ void add_fonts (std::list<boost::shared_ptr<dcpomatic::Font> > fonts_);
+ std::list<boost::shared_ptr<dcpomatic::Font> > fonts;
/** BitmapTexts, with their rectangles transformed as specified by their content */
std::list<BitmapText> bitmap;