aboutsummaryrefslogtreecommitdiff
path: root/backends/cloud/storagefile.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 /backends/cloud/storagefile.h
parentf4dfaed19d14c309e44d390b44bff571566779a5 (diff)
downloadscummvm-rg350-81c34adaef269524b1f53adcac722aa6a9730075.tar.gz
scummvm-rg350-81c34adaef269524b1f53adcac722aa6a9730075.tar.bz2
scummvm-rg350-81c34adaef269524b1f53adcac722aa6a9730075.zip
Fix comment formatting
Diffstat (limited to 'backends/cloud/storagefile.h')
-rw-r--r--backends/cloud/storagefile.h11
1 files changed, 5 insertions, 6 deletions
diff --git a/backends/cloud/storagefile.h b/backends/cloud/storagefile.h
index ced99fae30..704a03867f 100644
--- a/backends/cloud/storagefile.h
+++ b/backends/cloud/storagefile.h
@@ -28,11 +28,10 @@
namespace Cloud {
/**
-* StorageFile represents a file storaged on remote cloud storage.
-* It contains basic information about a file, and might be used
-* when listing directories or syncing files.
-*/
-
+ * StorageFile represents a file storaged on remote cloud storage.
+ * It contains basic information about a file, and might be used
+ * when listing directories or syncing files.
+ */
class StorageFile {
Common::String _path, _name;
uint32 _size, _timestamp;
@@ -49,6 +48,6 @@ public:
bool isDirectory() const { return _isDirectory; }
};
-} //end of namespace Cloud
+} // End of namespace Cloud
#endif