text cover

Data Abstraction and Problem Solving with C++

Walls and Mirrors

by Frank M. Carrano

Addison Wesley Logo

ChainNode.h

Go to the documentation of this file.
00001 
00019 #include "KeyedItem.h"
00020 
00021 class ChainNode
00022 {
00023 private:
00024    ChainNode(const KeyedItem & nodeItem,
00025              ChainNode *nextNode = NULL)
00026       : item(nodeItem), next(nextNode) {}
00027    KeyedItem  item;
00028    ChainNode *next;
00029 
00030    friend class HashTable;
00031 }; // end ChainNode

Generated on Sun Aug 27 22:18:13 2006 for AWLogo by  doxygen 1.4.6