Supporters update.
[dcpomatic.git] / src / lib / curl_uploader.h
index a3ef3cb229ba6367e622fb4a0402b6bbd35d2a24..4ee221f089dd1093b59062c501799603bb93e0f0 100644 (file)
@@ -20,6 +20,7 @@
 
 
 #include "uploader.h"
+#include <dcp/file.h>
 #include <curl/curl.h>
 
 
@@ -30,10 +31,11 @@ public:
        ~CurlUploader ();
 
        size_t read_callback (void* ptr, size_t size, size_t nmemb);
+       int debug(CURL* curl, curl_infotype type, char* data, size_t size);
 
 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);
+       void create_directory (boost::filesystem::path directory) override;
+       void upload_file (boost::filesystem::path from, boost::filesystem::path to, boost::uintmax_t& transferred, boost::uintmax_t total_size) override;
 
 private:
        CURL* _curl;