summaryrefslogtreecommitdiff
path: root/src/lib/cover_sheet.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2025-08-22 21:50:00 +0200
committerCarl Hetherington <cth@carlh.net>2025-08-25 08:47:42 +0200
commit99a191c599724ee8bab43146f9ea5da388c10225 (patch)
tree74146db5ab45cec449a396bf6a08b7828fc0e788 /src/lib/cover_sheet.h
parent07efa1af2aafabe6c98098adf2bcfd5cff5f9191 (diff)
Move write_cover_sheet() out to its own file.
Diffstat (limited to 'src/lib/cover_sheet.h')
-rw-r--r--src/lib/cover_sheet.h35
1 files changed, 35 insertions, 0 deletions
diff --git a/src/lib/cover_sheet.h b/src/lib/cover_sheet.h
new file mode 100644
index 000000000..7f556737d
--- /dev/null
+++ b/src/lib/cover_sheet.h
@@ -0,0 +1,35 @@
+/*
+ Copyright (C) 2025 Carl Hetherington <cth@carlh.net>
+
+ 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.
+
+ 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 DCP-o-matic. If not, see <http://www.gnu.org/licenses/>.
+
+*/
+
+
+#include <boost/filesystem.hpp>
+#include <memory>
+
+
+class Film;
+
+
+namespace dcpomatic {
+
+extern void write_cover_sheet(std::shared_ptr<const Film> film, boost::filesystem::path dcp_directory, boost::filesystem::path output);
+
+}
+
+