diff options
author | Alexander Tkachev | 2016-05-31 20:54:41 +0600 |
---|---|---|
committer | Alexander Tkachev | 2016-08-24 16:07:55 +0600 |
commit | 4e7dec550077bc37cf254311aefb621cdeebbdfe (patch) | |
tree | 07d20f7a35a89f909f5f0ce69618b795104997bb /common | |
parent | 675e7a6ed1d19e64e2f80a4dd1f454e646cb52f5 (diff) | |
download | scummvm-rg350-4e7dec550077bc37cf254311aefb621cdeebbdfe.tar.gz scummvm-rg350-4e7dec550077bc37cf254311aefb621cdeebbdfe.tar.bz2 scummvm-rg350-4e7dec550077bc37cf254311aefb621cdeebbdfe.zip |
CLOUD: Add DropboxCreateDirectoryRequest
Also add CloudManager::testFeature(), because syncSaves() now works fine
and I don't want to break it again and again with my testing requests.
Diffstat (limited to 'common')
-rw-r--r-- | common/cloudmanager.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/common/cloudmanager.h b/common/cloudmanager.h index 51c98e7d0c..936f0e0108 100644 --- a/common/cloudmanager.h +++ b/common/cloudmanager.h @@ -65,6 +65,11 @@ public: * Starts saves syncing process in currently active storage if there is any. */ virtual void syncSaves(Cloud::Storage::BoolCallback callback = nullptr, Networking::ErrorCallback errorCallback = nullptr) = 0; + + /** + * Starts feature testing (the one I'm working on currently). (Temporary) + */ + virtual void testFeature() = 0; }; } // End of namespace Common |