X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fsend_problem_report_job.h;h=5310010aeb96fc669d88cf67007380ff31b0b186;hb=ff639b3cf30afcc097bfd21d39c8d15f466cadd6;hp=ff787852ea129f1fd806caa3317b9d367abdbe62;hpb=3828baf56467224f5d44049bf1e7a7ed11f43a05;p=dcpomatic.git diff --git a/src/lib/send_problem_report_job.h b/src/lib/send_problem_report_job.h index ff787852e..5310010ae 100644 --- a/src/lib/send_problem_report_job.h +++ b/src/lib/send_problem_report_job.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2014-2015 Carl Hetherington + Copyright (C) 2014-2021 Carl Hetherington This file is part of DCP-o-matic. @@ -18,22 +18,26 @@ */ + #include "job.h" #include #include + class SendProblemReportJob : public Job { public: SendProblemReportJob ( - boost::shared_ptr, + std::shared_ptr film, std::string from, std::string summary ); - std::string name () const; - std::string json_name () const; - void run (); + ~SendProblemReportJob (); + + std::string name () const override; + std::string json_name () const override; + void run () override; private: void add_file (std::string& body, boost::filesystem::path file) const;