Fix typo in log message.
[dcpomatic.git] / src / lib / send_notification_email_job.h
index 3817f90187cc98b6c2c4e1e099c6c3b68c691c1c..7c1c3e2157bf395eab0fb0adb7d11bb4b11e6e4b 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2018 Carl Hetherington <cth@carlh.net>
+    Copyright (C) 2018-2021 Carl Hetherington <cth@carlh.net>
 
     This file is part of DCP-o-matic.
 
 
 */
 
+
 #include "job.h"
 
+
 class SendNotificationEmailJob : public Job
 {
 public:
-       SendNotificationEmailJob (explicit std::string body);
+       explicit SendNotificationEmailJob (std::string body);
+       ~SendNotificationEmailJob ();
 
-       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::string _body;