diff options
| author | Carl Hetherington <cth@carlh.net> | 2019-01-01 18:14:46 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2019-05-06 21:31:09 +0100 |
| commit | 4532b2ae1a0fce6e2a8bc6e9f9922a99a3efb493 (patch) | |
| tree | e879ed62791605b315f3ebf550016465c3a151de /src/lib/empty.h | |
| parent | 86f2d59536e17257bc85ad60c08ede18ab7d701c (diff) | |
Put Time types in dcpomatic namespace.
Diffstat (limited to 'src/lib/empty.h')
| -rw-r--r-- | src/lib/empty.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/lib/empty.h b/src/lib/empty.h index 50f21fc4d..bd295206e 100644 --- a/src/lib/empty.h +++ b/src/lib/empty.h @@ -37,23 +37,23 @@ public: Empty () {} Empty (boost::shared_ptr<const Film> film, std::list<boost::shared_ptr<Piece> > pieces, boost::function<bool (boost::shared_ptr<Piece>)> part); - DCPTime position () const { + dcpomatic::DCPTime position () const { return _position; } - DCPTimePeriod period_at_position () const; + dcpomatic::DCPTimePeriod period_at_position () const; bool done () const; - void set_position (DCPTime amount); + void set_position (dcpomatic::DCPTime amount); private: friend struct ::empty_test1; friend struct ::empty_test2; friend struct ::player_subframe_test; - std::list<DCPTimePeriod> _periods; - DCPTime _position; + std::list<dcpomatic::DCPTimePeriod> _periods; + dcpomatic::DCPTime _position; }; #endif |
