[Scummvm-cvs-logs] SF.net SVN: scummvm:[34394] scummvm/trunk/common/archive.h

fingolfin at users.sourceforge.net fingolfin at users.sourceforge.net
Sat Sep 6 23:09:34 CEST 2008


Revision: 34394
          http://scummvm.svn.sourceforge.net/scummvm/?rev=34394&view=rev
Author:   fingolfin
Date:     2008-09-06 21:09:34 +0000 (Sat, 06 Sep 2008)

Log Message:
-----------
Clarified / fixed some Common::Archive doxygen comments

Modified Paths:
--------------
    scummvm/trunk/common/archive.h

Modified: scummvm/trunk/common/archive.h
===================================================================
--- scummvm/trunk/common/archive.h	2008-09-06 21:04:42 UTC (rev 34393)
+++ scummvm/trunk/common/archive.h	2008-09-06 21:09:34 UTC (rev 34394)
@@ -56,26 +56,26 @@
 	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 @@
 
 	/**
 	 * 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);
 


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Scummvm-git-logs mailing list