summaryrefslogtreecommitdiff
path: root/src/lib/film.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2025-07-15 02:47:35 +0200
committerCarl Hetherington <cth@carlh.net>2025-07-15 18:03:57 +0200
commit0cfe03ee13d7659901211345e30ed78fe55e21ea (patch)
tree213890d76954c3a51fecb731d35eccbf8906ba07 /src/lib/film.h
parentde77e42f106342e1668e8948e28d6974ef44b61c (diff)
Change Film::add_content to take a vector of content.
Diffstat (limited to 'src/lib/film.h')
-rw-r--r--src/lib/film.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/film.h b/src/lib/film.h
index b14f182ce..a938d0dbd 100644
--- a/src/lib/film.h
+++ b/src/lib/film.h
@@ -379,7 +379,7 @@ public:
void set_name(std::string);
void set_use_isdcf_name(bool);
void examine_and_add_content(std::shared_ptr<Content> content, bool disable_audio_analysis = false);
- void add_content(std::shared_ptr<Content>);
+ void add_content(std::vector<std::shared_ptr<Content>> const& content);
void remove_content(std::shared_ptr<Content>);
void remove_content(ContentList);
void move_content_earlier(std::shared_ptr<Content>);