X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fsend_problem_report_job.h;h=5310010aeb96fc669d88cf67007380ff31b0b186;hb=345df3ae8254f25299c2fc2022b1143d444f9a56;hp=c4371a54ed4b32014ed8e1a8afd6355ed692f806;hpb=67a68bd971ebe1b35daa3f75873b4ccb53c00ba0;p=dcpomatic.git diff --git a/src/lib/send_problem_report_job.h b/src/lib/send_problem_report_job.h index c4371a54e..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 film, + 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;