Add some missing override labels.
[dcpomatic.git] / src / lib / upload_job.h
index 407094ab839851fb1b49f0b3801bb4a5530a949c..a3da164bf56f8ea6990af4204f4c357332123e32 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2012-2015 Carl Hetherington <cth@carlh.net>
+    Copyright (C) 2012-2021 Carl Hetherington <cth@carlh.net>
 
     This file is part of DCP-o-matic.
 
 
 */
 
+
 /** @file src/upload_job.h
  *  @brief A job to copy DCPs to a server using libcurl.
  */
 
+
 #include "job.h"
 
+
 class UploadJob : public Job
 {
 public:
-       explicit UploadJob (boost::shared_ptr<const Film>);
+       explicit UploadJob (std::shared_ptr<const Film>);
+       ~UploadJob ();
 
-       std::string name () const;
-       std::string json_name () const;
-       void run ();
-       std::string status () const;
+       std::string name () const override;
+       std::string json_name () const override;
+       void run () override;
+       std::string status () const override;
 
 private:
        void set_status (std::string);