Changeset 8003 for trunk/tools/common/kLIFO.cpp
- Timestamp:
- Feb 24, 2002, 3:47:28 AM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tools/common/kLIFO.cpp
r824 r8003 1 /* $Id: kLIFO.cpp,v 1. 1 1999-09-05 02:09:17 bird Exp $ */1 /* $Id: kLIFO.cpp,v 1.2 2002-02-24 02:47:27 bird Exp $ */ 2 2 /* 3 3 * Simple LIFO template class implementation. … … 160 160 */ 161 161 template <class kEntry> 162 BOOL kLIFO<kEntry>::isEmpty(void) const162 KBOOL kLIFO<kEntry>::isEmpty(void) const 163 163 { 164 164 return pTop == NULL; … … 190 190 */ 191 191 template <class kEntry> 192 BOOL kLIFO<kEntry>::exists(const kEntry *pEntry) const192 KBOOL kLIFO<kEntry>::exists(const kEntry *pEntry) const 193 193 { 194 194 kEntry *pCurrentEntry = pTop;
Note:
See TracChangeset
for help on using the changeset viewer.