summaryrefslogtreecommitdiff
path: root/src/lib/layout_closed_captions.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2025-12-28 00:39:48 +0100
committerCarl Hetherington <cth@carlh.net>2025-12-30 12:22:30 +0100
commit4edfd9afa0fdfea1fa6d86409e5696d90a580018 (patch)
tree7de9c8f91665420da8e926a3814cf476fcb71278 /src/lib/layout_closed_captions.h
parent7bfb66f9732dede9c3eaa0076eec45f230df061d (diff)
Refactor: move some layout code to its own file in lib.
Diffstat (limited to 'src/lib/layout_closed_captions.h')
-rw-r--r--src/lib/layout_closed_captions.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/lib/layout_closed_captions.h b/src/lib/layout_closed_captions.h
new file mode 100644
index 000000000..eb8c6d142
--- /dev/null
+++ b/src/lib/layout_closed_captions.h
@@ -0,0 +1,29 @@
+/*
+ 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 <string>
+#include <vector>
+
+
+class StringText;
+
+
+std::vector<std::string> layout_closed_captions(std::vector<StringText> text);