diff options
| author | Carl Hetherington <cth@carlh.net> | 2019-05-08 23:56:32 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2019-05-10 23:43:55 +0100 |
| commit | f41818f14369f170475b7f2bde1a2dd856517b14 (patch) | |
| tree | 2fd7d07fb63e46e8ad2964917cff5704d1893f85 /src/lib/screen_kdm.h | |
| parent | c4403784febdbdd42e9c32e67fadb147f11fe566 (diff) | |
Put Font and Screen into dcpomatic namespace.
Diffstat (limited to 'src/lib/screen_kdm.h')
| -rw-r--r-- | src/lib/screen_kdm.h | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/lib/screen_kdm.h b/src/lib/screen_kdm.h index 9ab73b851..351c2f1c2 100644 --- a/src/lib/screen_kdm.h +++ b/src/lib/screen_kdm.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2013-2016 Carl Hetherington <cth@carlh.net> + Copyright (C) 2013-2019 Carl Hetherington <cth@carlh.net> This file is part of DCP-o-matic. @@ -25,13 +25,15 @@ #include <dcp/name_format.h> #include <boost/shared_ptr.hpp> -class Screen; +namespace dcpomatic { + class Screen; +} /** Simple class to collect a screen and an encrypted KDM */ class ScreenKDM { public: - ScreenKDM (boost::shared_ptr<Screen> s, dcp::EncryptedKDM k) + ScreenKDM (boost::shared_ptr<dcpomatic::Screen> s, dcp::EncryptedKDM k) : screen (s) , kdm (k) {} @@ -42,7 +44,7 @@ public: boost::function<bool (boost::filesystem::path)> confirm_overwrite ); - boost::shared_ptr<Screen> screen; + boost::shared_ptr<dcpomatic::Screen> screen; dcp::EncryptedKDM kdm; }; |
