summaryrefslogtreecommitdiff
path: root/src/lib/screen_kdm.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2015-10-07 12:25:47 +0100
committerCarl Hetherington <cth@carlh.net>2015-10-09 13:44:54 +0100
commit7f8fb87610ca3f4106b925a314301c84ed380232 (patch)
treeacd72014d0274f0dfcfdd0ab9f6c3b525678fdf2 /src/lib/screen_kdm.h
parent9d63be286e8bc09dd1cf8deea5c58dda0a534c1e (diff)
Remove use of Film in KDM stuff.
Diffstat (limited to 'src/lib/screen_kdm.h')
-rw-r--r--src/lib/screen_kdm.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/lib/screen_kdm.h b/src/lib/screen_kdm.h
index c2928114f..e2a16d3b7 100644
--- a/src/lib/screen_kdm.h
+++ b/src/lib/screen_kdm.h
@@ -24,7 +24,6 @@
#include <boost/shared_ptr.hpp>
class Screen;
-class Film;
/** Simple class to collect a screen and an encrypted KDM */
class ScreenKDM
@@ -35,9 +34,9 @@ public:
, kdm (k)
{}
- std::string filename (boost::shared_ptr<const Film> film) const;
+ std::string filename (std::string first_part) const;
- static void write_files (boost::shared_ptr<const Film> film, std::list<ScreenKDM> screen_kdms, boost::filesystem::path directory);
+ static void write_files (std::string name_first_part, std::list<ScreenKDM> screen_kdms, boost::filesystem::path directory);
boost::shared_ptr<Screen> screen;
dcp::EncryptedKDM kdm;