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