[Scummvm-cvs-logs] SF.net SVN: scummvm: [25451] scummvm/trunk/engines/lure/res_struct.h

fingolfin at users.sourceforge.net fingolfin at users.sourceforge.net
Fri Feb 9 18:47:55 CET 2007


Revision: 25451
          http://scummvm.svn.sourceforge.net/scummvm/?rev=25451&view=rev
Author:   fingolfin
Date:     2007-02-09 09:47:55 -0800 (Fri, 09 Feb 2007)

Log Message:
-----------
Turned two comments into doxygen comments

Modified Paths:
--------------
    scummvm/trunk/engines/lure/res_struct.h

Modified: scummvm/trunk/engines/lure/res_struct.h
===================================================================
--- scummvm/trunk/engines/lure/res_struct.h	2007-02-09 17:17:08 UTC (rev 25450)
+++ scummvm/trunk/engines/lure/res_struct.h	2007-02-09 17:47:55 UTC (rev 25451)
@@ -221,11 +221,12 @@
 
 #include "common/pack-end.h"	// END STRUCT PACKING
 
-// Class template for a derived list that destroys the contained
-// object when the record containing it is destroyed. It's not
-// perfect, since the underlying list doesn't have virtual
-// methods, but it's sufficient for my usage
-
+/**
+ * Class template for a derived list that destroys the contained
+ * object when the record containing it is destroyed. It's not
+ * perfect, since the underlying list doesn't have virtual
+ * methods, but it's sufficient for my usage.
+ */
 template <class T>
 class ManagedList: public Common::List<T> {
 	typedef typename Common::List<T> Common_List;
@@ -255,8 +256,7 @@
 	}
 };
 
-// Enumeration used for direction facings
-
+/** Enumeration used for direction facings */
 enum Direction {UP, DOWN, LEFT, RIGHT, NO_DIRECTION};
 
 // Support classes to hold loaded resources


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