summaryrefslogtreecommitdiff
path: root/src/lib/overlaps.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2023-05-14 23:01:06 +0200
committerCarl Hetherington <cth@carlh.net>2023-11-29 21:20:31 +0100
commit0924215672ae0e9e02058e4cc8ac7268667612b9 (patch)
tree7a93f05ebbd34d0d7c5d2e6d5312154c7a84a0b5 /src/lib/overlaps.h
parente776133c2dea5471651df202af23a95b2cf6422a (diff)
Put overlaps() into the dcpomatic namespace.
Diffstat (limited to 'src/lib/overlaps.h')
-rw-r--r--src/lib/overlaps.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/lib/overlaps.h b/src/lib/overlaps.h
index bb8277eaa..f405c0fab 100644
--- a/src/lib/overlaps.h
+++ b/src/lib/overlaps.h
@@ -27,6 +27,9 @@ class ContentPart;
class Film;
+namespace dcpomatic {
+
+
/** @return Pieces of content with a given part (video, audio,
* subtitle) that overlap a specified time range in the given
* ContentList
@@ -34,3 +37,7 @@ class Film;
ContentList overlaps (
std::shared_ptr<const Film> film, ContentList cl, std::function<bool (std::shared_ptr<const Content>)> part, dcpomatic::DCPTime from, dcpomatic::DCPTime to
);
+
+
+}
+