aboutsummaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorMax Horn2008-09-06 21:09:34 +0000
committerMax Horn2008-09-06 21:09:34 +0000
commit7a7e7102908e5e9468ad9cf4077c5ded0657bb50 (patch)
treedbedbd610d65c614c4027a1ce0c72d553447a854 /common
parent4fd19a33781148c298c5e5ef55f3c2e5af9ca632 (diff)
downloadscummvm-rg350-7a7e7102908e5e9468ad9cf4077c5ded0657bb50.tar.gz
scummvm-rg350-7a7e7102908e5e9468ad9cf4077c5ded0657bb50.tar.bz2
scummvm-rg350-7a7e7102908e5e9468ad9cf4077c5ded0657bb50.zip
Clarified / fixed some Common::Archive doxygen comments
svn-id: r34394
Diffstat (limited to 'common')
-rw-r--r--common/archive.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/common/archive.h b/common/archive.h
index c543e1f3c8..e543462332 100644
--- a/common/archive.h
+++ b/common/archive.h
@@ -56,26 +56,26 @@ public:
virtual bool hasFile(const String &name) = 0;
/**
- * Add names to the provided list according to the pattern. Returned
- * names can be used as parameters to fileOpen.
+ * Add all the names present in the Archive which match pattern to
+ * list. Returned names can be used as parameters to openFile.
* Must not remove elements from the list.
*
- * @return The number of names added to list.
+ * @return the number of names added to list
*/
virtual int matchPattern(StringList &list, const String &pattern);
/**
- * Add all the names present in the Archive. Returned
- * names can be used as parameters to fileOpen.
+ * Add all the names present in the Archive to list. Returned
+ * names can be used as parameters to openFile.
* Must not remove elements from the list.
*
- * @return The number of names added to list.
+ * @return the number of names added to list
*/
virtual int getAllNames(StringList &list) = 0;
/**
* Create a stream bound to a file in the archive.
- * @return The newly created input stream.
+ * @return the newly created input stream
*/
virtual SeekableReadStream *openFile(const String &name) = 0;
};
@@ -132,7 +132,7 @@ public:
/**
* Create a new FSDirectory pointing to a sub directory of the instance.
- * @return A new FSDirectory instance conveniently wrapped in a SharedPtr.
+ * @return a new FSDirectory instance
*/
FSDirectory *getSubDirectory(const String &name);