Fix subtitle vertical position (#2367).
[dcpomatic.git] / src / lib / combine_dcp_job.h
index 97bf201101d70fb94e3de763fe93b00d5522e374..5311ddd3e956cc815d1215ff02d8f6772fedd4a0 100644 (file)
 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;
-       void run ();
+       std::string name () const override;
+       std::string json_name () const override;
+       void run () override;
 
 private:
        std::vector<boost::filesystem::path> _inputs;
        boost::filesystem::path _output;
+       std::string _annotation_text;
 };