aboutsummaryrefslogtreecommitdiff
path: root/common/cloudmanager.h
diff options
context:
space:
mode:
authorPeter Bozsó2016-05-28 20:10:38 +0200
committerAlexander Tkachev2016-08-24 16:07:55 +0600
commit81c34adaef269524b1f53adcac722aa6a9730075 (patch)
treeda867e32df6a20b06b2e433948e5f94e17ec73f7 /common/cloudmanager.h
parentf4dfaed19d14c309e44d390b44bff571566779a5 (diff)
downloadscummvm-rg350-81c34adaef269524b1f53adcac722aa6a9730075.tar.gz
scummvm-rg350-81c34adaef269524b1f53adcac722aa6a9730075.tar.bz2
scummvm-rg350-81c34adaef269524b1f53adcac722aa6a9730075.zip
Fix comment formatting
Diffstat (limited to 'common/cloudmanager.h')
-rw-r--r--common/cloudmanager.h45
1 files changed, 20 insertions, 25 deletions
diff --git a/common/cloudmanager.h b/common/cloudmanager.h
index a480bdf684..350901e35f 100644
--- a/common/cloudmanager.h
+++ b/common/cloudmanager.h
@@ -33,45 +33,40 @@ public:
virtual ~CloudManager() {}
/**
- * Loads all information from configs and creates current Storage instance.
- *
- * @note It's called once on startup in scummvm_main().
- */
-
+ * Loads all information from configs and creates current Storage instance.
+ *
+ * @note It's called once on startup in scummvm_main().
+ */
virtual void init() = 0;
/**
- * Saves all information into configuration file.
- */
-
+ * Saves all information into configuration file.
+ */
virtual void save() = 0;
/**
- * Adds new Storage into list.
- *
- * @param storage Cloud::Storage to add.
- * @param makeCurrent whether added storage should be the new current storage.
- * @param saveConfig whether save() should be called to update configuration file.
- */
-
+ * Adds new Storage into list.
+ *
+ * @param storage Cloud::Storage to add.
+ * @param makeCurrent whether added storage should be the new current storage.
+ * @param saveConfig whether save() should be called to update configuration file.
+ */
virtual void addStorage(Cloud::Storage *storage, bool makeCurrent = true, bool saveConfig = true) = 0;
/**
- * Returns active Storage, which could be used to interact
- * with cloud storage.
- *
- * @return active Cloud::Storage or null, if there is no active Storage.
- */
-
+ * Returns active Storage, which could be used to interact
+ * with cloud storage.
+ *
+ * @return active Cloud::Storage or null, if there is no active Storage.
+ */
virtual Cloud::Storage *getCurrentStorage() = 0;
/**
- * Starts saves syncing process in currently active storage if there is any.
- */
-
+ * Starts saves syncing process in currently active storage if there is any.
+ */
virtual void syncSaves(Cloud::Storage::BoolCallback callback = 0) = 0;
};
-} //end of namespace Common
+} // End of namespace Common
#endif