Changeset 3237 for trunk/tools/common/kList.h
- Timestamp:
- Mar 26, 2000, 12:17:47 AM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tools/common/kList.h
r824 r3237 1 /* $Id: kList.h,v 1. 1 1999-09-05 02:09:17 bird Exp $ */1 /* $Id: kList.h,v 1.2 2000-03-25 23:17:47 bird Exp $ */ 2 2 /* 3 3 * Simple list and sorted list template class. … … 85 85 class kList 86 86 { 87 private: 88 kEntry *pFirst; 89 kEntry *pLast; 90 unsigned long cEntries; 87 91 92 public: 93 kList(void); 94 ~kList(void); 95 96 void destroy(void); 97 void insert(kEntry *pEntry); 98 kEntry * getFirst(void) const; 99 kEntry * getLast(void) const; 100 unsigned long getCount(void) const; 88 101 }; 89 102
Note:
See TracChangeset
for help on using the changeset viewer.