diff options
author | Mike Buland <eichlan@xagasoft.com> | 2006-07-12 08:14:08 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2006-07-12 08:14:08 +0000 |
commit | 74f94e9b20c93b93ad8b9091474f6368fc79c697 (patch) | |
tree | 8840579769cb6d5796cc7e43fd239ffae39c8901 /src/hashtable.h | |
parent | b962c402b461e3249a1ee726ab3a33f019baecbf (diff) | |
download | libbu++-74f94e9b20c93b93ad8b9091474f6368fc79c697.tar.gz libbu++-74f94e9b20c93b93ad8b9091474f6368fc79c697.tar.bz2 libbu++-74f94e9b20c93b93ad8b9091474f6368fc79c697.tar.xz libbu++-74f94e9b20c93b93ad8b9091474f6368fc79c697.zip |
Added a clear function to the hashtable. How we made it this long without is
beyond me...
Diffstat (limited to 'src/hashtable.h')
-rw-r--r-- | src/hashtable.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/hashtable.h b/src/hashtable.h index d14be71..b015107 100644 --- a/src/hashtable.h +++ b/src/hashtable.h | |||
@@ -175,6 +175,13 @@ public: | |||
175 | */ | 175 | */ |
176 | bool del( const void *id, int nSkip=0 ); | 176 | bool del( const void *id, int nSkip=0 ); |
177 | 177 | ||
178 | /** | ||
179 | * Deletes every entry in the hash table. See the notes on del to see what | ||
180 | * this means, except that since no data is being kept, the entire table is | ||
181 | * just marked as usable space. | ||
182 | */ | ||
183 | void clear(); | ||
184 | |||
178 | private: | 185 | private: |
179 | /** | 186 | /** |
180 | * Contains info related to a position in the hashtable. Used for | 187 | * Contains info related to a position in the hashtable. Used for |