aboutsummaryrefslogtreecommitdiff
path: root/backends/cloud/request.h
diff options
context:
space:
mode:
Diffstat (limited to 'backends/cloud/request.h')
-rw-r--r--backends/cloud/request.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/backends/cloud/request.h b/backends/cloud/request.h
index ae85c234f2..b4f5ccab0b 100644
--- a/backends/cloud/request.h
+++ b/backends/cloud/request.h
@@ -23,6 +23,8 @@
#ifndef BACKENDS_CLOUD_REQUEST_H
#define BACKENDS_CLOUD_REQUEST_H
+#include "backends/cloud/curl/connectionmanager.h"
+
namespace Cloud {
class Request {
@@ -45,7 +47,7 @@ public:
* @return true if request's work is complete and it may be removed from Storage's list
*/
- virtual bool handle() = 0;
+ virtual bool handle(ConnectionManager& manager) = 0;
};
} //end of namespace Cloud