![]() |
Data Abstraction and Problem Solving with C++Walls and Mirrorsby Frank M. Carrano |
![]() |
ChainNode.hGo 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 |