C++11 tidying.
[dcpomatic.git] / src / lib / scp_uploader.h
index 5c90db927253eda6e3b32414d1d956a779c56b26..e6bf7da2bdac0af70f740fc6a264ca19b493e2e4 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.
 
 
 */
 
+
 #include "uploader.h"
 #include <libssh/libssh.h>
 
+
 class SCPUploader : public Uploader
 {
 public:
-       SCPUploader (boost::function<void (std::string)> set_status, boost::function<void (float)> set_progress);
+       SCPUploader (std::function<void (std::string)> set_status, std::function<void (float)> set_progress);
        ~SCPUploader ();
 
 protected:
-       virtual void create_directory (boost::filesystem::path directory);
-       virtual void upload_file (boost::filesystem::path from, boost::filesystem::path to, boost::uintmax_t& transferred, boost::uintmax_t total_size);
+       virtual void create_directory (boost::filesystem::path directory) override;
+       virtual void upload_file (boost::filesystem::path from, boost::filesystem::path to, boost::uintmax_t& transferred, boost::uintmax_t total_size) override;
 
 private:
        ssh_session _session;