X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Factive_text.h;h=90b6b533bfe761d6bc205d6bfc93effe202ee259;hb=e6c828cbd577239e7c8e4c532161084a33843a0f;hp=ff4a1bd2f75cf07cc39bb621193171f7ceb992c7;hpb=3a7b6acdb993864f319a6ceb3bc4c3fb7d4aaefd;p=dcpomatic.git diff --git a/src/lib/active_text.h b/src/lib/active_text.h index ff4a1bd2f..90b6b533b 100644 --- a/src/lib/active_text.h +++ b/src/lib/active_text.h @@ -37,11 +37,11 @@ class TextContent; class ActiveText : public boost::noncopyable { public: - std::list get_burnt (DCPTimePeriod period, bool always_burn_captions) const; - void clear_before (DCPTime time); + std::list get_burnt (dcpomatic::DCPTimePeriod period, bool always_burn_captions) const; + void clear_before (dcpomatic::DCPTime time); void clear (); - void add_from (boost::weak_ptr content, PlayerText ps, DCPTime from); - std::pair add_to (boost::weak_ptr content, DCPTime to); + void add_from (boost::weak_ptr content, PlayerText ps, dcpomatic::DCPTime from); + std::pair add_to (boost::weak_ptr content, dcpomatic::DCPTime to); bool have (boost::weak_ptr content) const; private: @@ -50,14 +50,14 @@ private: public: Period () {} - Period (PlayerText s, DCPTime f) + Period (PlayerText s, dcpomatic::DCPTime f) : subs (s) , from (f) {} PlayerText subs; - DCPTime from; - boost::optional to; + dcpomatic::DCPTime from; + boost::optional to; }; typedef std::map, std::list > Map;