Remove in-place translations support.
[dcpomatic.git] / src / lib / send_problem_report_job.h
index af1a4b26901688efb7a164050d9de09a5acd9bca..5310010aeb96fc669d88cf67007380ff31b0b186 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2014-2015 Carl Hetherington <cth@carlh.net>
+    Copyright (C) 2014-2021 Carl Hetherington <cth@carlh.net>
 
     This file is part of DCP-o-matic.
 
 
 */
 
+
 #include "job.h"
 #include <dcp/types.h>
 #include <boost/filesystem.hpp>
 
+
 class SendProblemReportJob : public Job
 {
 public:
        SendProblemReportJob (
-               boost::shared_ptr<const Film> film,
+               std::shared_ptr<const Film> film,
                std::string from,
                std::string summary
                );
 
        ~SendProblemReportJob ();
 
-       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:
        void add_file (std::string& body, boost::filesystem::path file) const;