diff options
| author | Carl Hetherington <cth@carlh.net> | 2026-01-27 23:20:35 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2026-01-29 00:20:31 +0100 |
| commit | 8794fd2896bd8cb0c489a1b49c629e21316cc815 (patch) | |
| tree | 77507a9d57be126a4db79f06e5854100669e4174 /src/lib/content.h | |
| parent | 81e46225d94ab69482b9fdb345ac173e7b9cb077 (diff) | |
Separate some things out from the examination process.
Diffstat (limited to 'src/lib/content.h')
| -rw-r--r-- | src/lib/content.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/lib/content.h b/src/lib/content.h index d036808c7..02973e8f7 100644 --- a/src/lib/content.h +++ b/src/lib/content.h @@ -93,6 +93,9 @@ public: */ virtual void examine(std::shared_ptr<const Film> film, std::shared_ptr<Job> job, bool tolerant); + /** Adapt anything about this content just before it's added to the given film */ + virtual void prepare_for_add_to_film(std::shared_ptr<const Film>) {} + virtual void take_settings_from(std::shared_ptr<const Content> c); /** @return Quick one-line summary of the content, as will be presented in the |
