diff options
| author | Carl Hetherington <cth@carlh.net> | 2016-08-24 11:40:34 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2016-08-24 14:28:32 +0100 |
| commit | 1a693725f9a8cc6ba58f65b2f1ef03255d295f23 (patch) | |
| tree | 91596f7800dcc02103c90f8f19c763f45281603e /src/lib/content.h | |
| parent | a03e9a98ed667eb44c9dfbbeaf6da57f44992914 (diff) | |
Basic template support (#485).
Diffstat (limited to 'src/lib/content.h')
| -rw-r--r-- | src/lib/content.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/lib/content.h b/src/lib/content.h index f8b5493c0..519ff8907 100644 --- a/src/lib/content.h +++ b/src/lib/content.h @@ -76,6 +76,8 @@ public: */ virtual void examine (boost::shared_ptr<Job> job); + virtual void use_template (boost::shared_ptr<const Content> c); + /** @return Quick one-line summary of the content, as will be presented in the * film editor. */ @@ -86,7 +88,7 @@ public: */ virtual std::string technical_summary () const; - virtual void as_xml (xmlpp::Node *) const; + virtual void as_xml (xmlpp::Node *, bool with_paths) const; virtual DCPTime full_length () const = 0; virtual std::string identifier () const; /** @return points at which to split this content when |
