X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fscreen_kdm.h;h=9ab73b8515ac69a3c3d23b54c5250bb9da2b6708;hb=6ab8e99f22bfe61bddbd204d4265071729c1f37d;hp=c2928114f649838a04c21ce1115e33c8a8ae3db1;hpb=9d63be286e8bc09dd1cf8deea5c58dda0a534c1e;p=dcpomatic.git diff --git a/src/lib/screen_kdm.h b/src/lib/screen_kdm.h index c2928114f..9ab73b851 100644 --- a/src/lib/screen_kdm.h +++ b/src/lib/screen_kdm.h @@ -1,19 +1,20 @@ /* - Copyright (C) 2013-2015 Carl Hetherington + Copyright (C) 2013-2016 Carl Hetherington - This program is free software; you can redistribute it and/or modify + This file is part of DCP-o-matic. + + DCP-o-matic is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. - This program is distributed in the hope that it will be useful, + DCP-o-matic is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + along with DCP-o-matic. If not, see . */ @@ -21,10 +22,10 @@ #define DCPOMATIC_SCREEN_KDM_H #include +#include #include class Screen; -class Film; /** Simple class to collect a screen and an encrypted KDM */ class ScreenKDM @@ -35,9 +36,11 @@ public: , kdm (k) {} - std::string filename (boost::shared_ptr film) const; - - static void write_files (boost::shared_ptr film, std::list screen_kdms, boost::filesystem::path directory); + static int write_files ( + std::list screen_kdms, boost::filesystem::path directory, + dcp::NameFormat name_format, dcp::NameFormat::Map name_values, + boost::function confirm_overwrite + ); boost::shared_ptr screen; dcp::EncryptedKDM kdm;