text cover

Data Abstraction and Problem Solving with C++

Walls and Mirrors

by Frank M. Carrano

Addison Wesley Logo

c08p420b.cpp

Go to the documentation of this file.
00001 
00016 void SortedList::insert(const ListItemType& newItem)
00017    throw(ListException)
00018 {
00019    bool found;
00020    int newPosition = locatePosition(newItem, found);
00021    List::insert(newPosition, newItem);
00022 }  // end insert

Generated on Sun Aug 27 19:59:37 2006 for AWLogo by  doxygen 1.4.6