X-Git-Url: https://main.carlh.net/gitweb/?p=dcpomatic.git;a=blobdiff_plain;f=src%2Flib%2Foverlaps.h;h=bce163a5766014c3f255e4b22bd6cce0e0e2f720;hp=e5b3fc38e0b67e0813809afa5e3b8ce141575cc6;hb=689fa55d1529ad88449ca464e9107c4dcc54d1cb;hpb=88eb173f022062b337dc5d1681a1917c5893dc95 diff --git a/src/lib/overlaps.h b/src/lib/overlaps.h index e5b3fc38e..bce163a57 100644 --- a/src/lib/overlaps.h +++ b/src/lib/overlaps.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2013-2016 Carl Hetherington + Copyright (C) 2013-2021 Carl Hetherington This file is part of DCP-o-matic. @@ -18,15 +18,19 @@ */ + #include "types.h" #include "dcpomatic_time.h" + class ContentPart; +class Film; + /** @return Pieces of content with a given part (video, audio, * subtitle) that overlap a specified time range in the given * ContentList */ ContentList overlaps ( - ContentList cl, boost::function (boost::shared_ptr)> part, DCPTime from, DCPTime to + std::shared_ptr film, ContentList cl, std::function)> part, dcpomatic::DCPTime from, dcpomatic::DCPTime to );