diff options
author | belugas <belugas@openttd.org> | 2007-04-17 20:23:13 +0000 |
---|---|---|
committer | belugas <belugas@openttd.org> | 2007-04-17 20:23:13 +0000 |
commit | 607a55f4ec509649d3799df9dff54a28d074e693 (patch) | |
tree | b4ba94aa4f1173fcc27e954fd5d4ed6561876881 /src/misc | |
parent | c39ab93daa5af53272b108a628ed2e857b95fb64 (diff) | |
download | openttd-607a55f4ec509649d3799df9dff54a28d074e693.tar.xz |
(svn r9662) -Documentation: Doxygen corrections and @file omissions
Diffstat (limited to 'src/misc')
-rw-r--r-- | src/misc/array.hpp | 2 | ||||
-rw-r--r-- | src/misc/autocopyptr.hpp | 2 | ||||
-rw-r--r-- | src/misc/autoptr.hpp | 2 | ||||
-rw-r--r-- | src/misc/binaryheap.hpp | 2 | ||||
-rw-r--r-- | src/misc/blob.hpp | 2 | ||||
-rw-r--r-- | src/misc/countedptr.hpp | 2 | ||||
-rw-r--r-- | src/misc/crc32.hpp | 2 | ||||
-rw-r--r-- | src/misc/fixedsizearray.hpp | 2 | ||||
-rw-r--r-- | src/misc/hashtable.hpp | 4 |
9 files changed, 19 insertions, 1 deletions
diff --git a/src/misc/array.hpp b/src/misc/array.hpp index e8eff1c8c..7f8e42329 100644 --- a/src/misc/array.hpp +++ b/src/misc/array.hpp @@ -1,5 +1,7 @@ /* $Id$ */ +/** @file array.hpp */ + #ifndef ARRAY_HPP #define ARRAY_HPP diff --git a/src/misc/autocopyptr.hpp b/src/misc/autocopyptr.hpp index b5ca6ddd1..0c684aac2 100644 --- a/src/misc/autocopyptr.hpp +++ b/src/misc/autocopyptr.hpp @@ -1,5 +1,7 @@ /* $Id$ */ +/** @file autocopyptr.hpp */ + #ifndef AUTOCOPYPTR_HPP #define AUTOCOPYPTR_HPP diff --git a/src/misc/autoptr.hpp b/src/misc/autoptr.hpp index 3412f3bbc..08516d2ea 100644 --- a/src/misc/autoptr.hpp +++ b/src/misc/autoptr.hpp @@ -1,5 +1,7 @@ /* $Id$ */ +/** @file autoptr.hpp */ + #ifndef AUTOPTR_HPP #define AUTOPTR_HPP diff --git a/src/misc/binaryheap.hpp b/src/misc/binaryheap.hpp index 7b72a25af..78ebdc47f 100644 --- a/src/misc/binaryheap.hpp +++ b/src/misc/binaryheap.hpp @@ -1,5 +1,7 @@ /* $Id$ */ +/** @file binaryheap.hpp */ + #ifndef BINARYHEAP_HPP #define BINARYHEAP_HPP diff --git a/src/misc/blob.hpp b/src/misc/blob.hpp index 1a20f3ac2..97bd01160 100644 --- a/src/misc/blob.hpp +++ b/src/misc/blob.hpp @@ -1,5 +1,7 @@ /* $Id$ */ +/** @file blob.hpp */ + #ifndef BLOB_HPP #define BLOB_HPP diff --git a/src/misc/countedptr.hpp b/src/misc/countedptr.hpp index e63e47fb5..0d6a925b8 100644 --- a/src/misc/countedptr.hpp +++ b/src/misc/countedptr.hpp @@ -1,5 +1,7 @@ /* $Id$ */ +/** @file countedptr.hpp */ + #ifndef COUNTEDPTR_HPP #define COUNTEDPTR_HPP diff --git a/src/misc/crc32.hpp b/src/misc/crc32.hpp index 10e9a7ac4..71f7ff03f 100644 --- a/src/misc/crc32.hpp +++ b/src/misc/crc32.hpp @@ -1,5 +1,7 @@ /* $Id$ */ +/** @file crc32.hpp */ + #ifndef CRC32_HPP #define CRC32_HPP diff --git a/src/misc/fixedsizearray.hpp b/src/misc/fixedsizearray.hpp index 48b177f3c..ee4ea14ca 100644 --- a/src/misc/fixedsizearray.hpp +++ b/src/misc/fixedsizearray.hpp @@ -1,5 +1,7 @@ /* $Id$ */ +/** @file fixedsizearray.hpp */ + #ifndef FIXEDSIZEARRAY_HPP #define FIXEDSIZEARRAY_HPP diff --git a/src/misc/hashtable.hpp b/src/misc/hashtable.hpp index c6b52e50a..fad44114d 100644 --- a/src/misc/hashtable.hpp +++ b/src/misc/hashtable.hpp @@ -1,5 +1,7 @@ /* $Id$ */ +/** @file hashtable.hpp */ + #ifndef HASHTABLE_HPP #define HASHTABLE_HPP @@ -97,7 +99,7 @@ struct CHashTableSlotT } }; -/** @class CHashTableT<Titem, Thash_bits> - simple hash table +/** class CHashTableT<Titem, Thash_bits> - simple hash table * of pointers allocated elsewhere. * * Supports: Add/Find/Remove of Titems. |