text cover

Data Abstraction and Problem Solving with C++

Walls and Mirrors

by Frank M. Carrano

Addison Wesley Logo

c04p227.h

Go to the documentation of this file.
00001 
00021 // node for wait list of people waiting for certain titles
00022 struct WaitNode
00023 {  string    who;
00024    WaitNode *next;
00025 }; // end WaitNode
00026 
00027 // node for inventory list of stock items
00028 struct StockNode
00029 {  string     title;
00030    int        have, want;
00031    WaitNode * waitHead, *waitTail;
00032    StockNode *next;
00033 }; // end StockNode

Generated on Sun Aug 27 13:05:37 2006 for AWLogo by  doxygen 1.4.6