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>2024-01-28 02:01:58 +0100
commitb24eb0e8fbad6779c77f7015d3a8c8c5cf206706 (patch)
treec88070e746bd427056eed7f1750f32cfee14ca2c /src/lib/overlaps.h
parent849f30932b4fcec978c4d07a2034de1c130a67a4 (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
);
+
+
+}
+