aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorMax Horn2007-02-09 17:47:55 +0000
committerMax Horn2007-02-09 17:47:55 +0000
commit81ec51b8f7ed6ca59c83ff456f2043a8986bc256 (patch)
tree3c6b1fc3708e4c849a50f521c4082962a8fb73b3 /engines
parenta49c22290f3119033a7966d28856aed1f204dd41 (diff)
downloadscummvm-rg350-81ec51b8f7ed6ca59c83ff456f2043a8986bc256.tar.gz
scummvm-rg350-81ec51b8f7ed6ca59c83ff456f2043a8986bc256.tar.bz2
scummvm-rg350-81ec51b8f7ed6ca59c83ff456f2043a8986bc256.zip
Turned two comments into doxygen comments
svn-id: r25451
Diffstat (limited to 'engines')
-rw-r--r--engines/lure/res_struct.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/engines/lure/res_struct.h b/engines/lure/res_struct.h
index 1736705632..c2d59eecc6 100644
--- a/engines/lure/res_struct.h
+++ b/engines/lure/res_struct.h
@@ -221,11 +221,12 @@ struct RoomExitIndexedHotspotResource {
#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 @@ public:
}
};
-// Enumeration used for direction facings
-
+/** Enumeration used for direction facings */
enum Direction {UP, DOWN, LEFT, RIGHT, NO_DIRECTION};
// Support classes to hold loaded resources