1: // Created by Frank M. Carrano and Timothy M. Henry.
2: // Copyright (c) 2017 Pearson Education, Hoboken, New Jersey.
4: template<class ItemType>
5: ItemType SortedListAsA<ItemType>::getEntry(int position) const
6: throw(PrecondViolatedExcept)
7: {
8: return LinkedList<ItemType>::getEntry(position);
9: } // end getEntry