aboutsummaryrefslogtreecommitdiff
path: root/backends/cloud/dropbox/dropboxstorage.h
diff options
context:
space:
mode:
authorAlexander Tkachev2016-05-15 00:31:02 +0600
committerAlexander Tkachev2016-08-24 16:07:55 +0600
commit8b585d631b21441dfa3de69d2c7c848d172c73be (patch)
tree36302c2945116c0229d0d897ae515bb4ac61c1f8 /backends/cloud/dropbox/dropboxstorage.h
parent6ad983bb7220eed2f635163a7fcfdac811b80ca0 (diff)
downloadscummvm-rg350-8b585d631b21441dfa3de69d2c7c848d172c73be.tar.gz
scummvm-rg350-8b585d631b21441dfa3de69d2c7c848d172c73be.tar.bz2
scummvm-rg350-8b585d631b21441dfa3de69d2c7c848d172c73be.zip
CLOUD: Add CurlRequest
CurlRequest uses own multi_handle, in which it creates an easy_handle to make a request. Every time `handle()` is called it checks whether request is complete and, if it is, stops.
Diffstat (limited to 'backends/cloud/dropbox/dropboxstorage.h')
-rw-r--r--backends/cloud/dropbox/dropboxstorage.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/backends/cloud/dropbox/dropboxstorage.h b/backends/cloud/dropbox/dropboxstorage.h
index f80854b987..a0229438be 100644
--- a/backends/cloud/dropbox/dropboxstorage.h
+++ b/backends/cloud/dropbox/dropboxstorage.h
@@ -29,7 +29,8 @@ namespace Cloud { namespace Dropbox {
class DropboxStorage: public Cloud::Storage {
public:
- DropboxStorage() {};
+ DropboxStorage();
+ virtual ~DropboxStorage();
virtual void listDirectory(Common::String path);
virtual void syncSaves();