Add comment.
[dcpomatic.git] / src / lib / curl_uploader.h
index 9fb3022f2f7ab0048224849c511f093ad56d6d8c..a3ef3cb229ba6367e622fb4a0402b6bbd35d2a24 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2015 Carl Hetherington <cth@carlh.net>
+    Copyright (C) 2015-2021 Carl Hetherington <cth@carlh.net>
 
     This file is part of DCP-o-matic.
 
 
 */
 
+
 #include "uploader.h"
 #include <curl/curl.h>
 
+
 class CurlUploader : public Uploader
 {
 public:
-       CurlUploader (boost::function<void (std::string)> set_status, boost::function<void (float)> set_progress);
+       CurlUploader (std::function<void (std::string)> set_status, std::function<void (float)> set_progress);
        ~CurlUploader ();
 
        size_t read_callback (void* ptr, size_t size, size_t nmemb);
@@ -36,7 +38,7 @@ protected:
 private:
        CURL* _curl;
 
-       FILE* _file;
-       boost::uintmax_t* _transferred;
-       boost::uintmax_t _total_size;
+       FILE* _file = nullptr;
+       boost::uintmax_t* _transferred = nullptr;
+       boost::uintmax_t _total_size = 0;
 };