diff options
| author | Carl Hetherington <cth@carlh.net> | 2021-05-30 20:58:31 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2021-05-30 20:58:31 +0200 |
| commit | a7ad0cdff67faffc6bdaef21c100d4ef4016e406 (patch) | |
| tree | 7647368fe2fda9344f57236b6efd6bd06692a0fb /src/lib/combine_dcp_job.h | |
| parent | cc105289bed33989e5c399433e28208652b18e70 (diff) | |
Allow annotation text to be set when combining DCPs.
Diffstat (limited to 'src/lib/combine_dcp_job.h')
| -rw-r--r-- | src/lib/combine_dcp_job.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/combine_dcp_job.h b/src/lib/combine_dcp_job.h index 97bf20110..4a7e02b8b 100644 --- a/src/lib/combine_dcp_job.h +++ b/src/lib/combine_dcp_job.h @@ -26,7 +26,7 @@ class CombineDCPJob : public Job { public: - CombineDCPJob (std::vector<boost::filesystem::path> inputs, boost::filesystem::path output); + CombineDCPJob (std::vector<boost::filesystem::path> inputs, boost::filesystem::path output, std::string annotation_text); std::string name () const; std::string json_name () const; @@ -35,5 +35,6 @@ public: private: std::vector<boost::filesystem::path> _inputs; boost::filesystem::path _output; + std::string _annotation_text; }; |
