Allow configuration of KDM filename format.
[dcpomatic.git] / src / lib / screen_kdm.h
index e2a16d3b726cc4501082909c5c71e044d0939743..2e015e63ea50b0a363b4576ea2365ca9eb73d4df 100644 (file)
@@ -1,25 +1,27 @@
 /*
     Copyright (C) 2013-2015 Carl Hetherington <cth@carlh.net>
 
-    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 <http://www.gnu.org/licenses/>.
 
 */
 
 #ifndef DCPOMATIC_SCREEN_KDM_H
 #define DCPOMATIC_SCREEN_KDM_H
 
+#include "kdm_name_format.h"
 #include <dcp/encrypted_kdm.h>
 #include <boost/shared_ptr.hpp>
 
@@ -34,9 +36,10 @@ public:
                , kdm (k)
        {}
 
-       std::string filename (std::string first_part) const;
-
-       static void write_files (std::string name_first_part, std::list<ScreenKDM> screen_kdms, boost::filesystem::path directory);
+       static void write_files (
+               std::list<ScreenKDM> screen_kdms, boost::filesystem::path directory,
+               KDMNameFormat name_format, NameFormat::Map name_values
+               );
 
        boost::shared_ptr<Screen> screen;
        dcp::EncryptedKDM kdm;