diff options
| author | Carl Hetherington <cth@carlh.net> | 2025-07-15 02:47:35 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2025-07-15 18:03:57 +0200 |
| commit | 0cfe03ee13d7659901211345e30ed78fe55e21ea (patch) | |
| tree | 213890d76954c3a51fecb731d35eccbf8906ba07 /src/lib/film.h | |
| parent | de77e42f106342e1668e8948e28d6974ef44b61c (diff) | |
Change Film::add_content to take a vector of content.
Diffstat (limited to 'src/lib/film.h')
| -rw-r--r-- | src/lib/film.h | 2 |
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>); |
