1: // Created by Frank M. Carrano and Timothy M. Henry.
2: // Copyright (c) 2017 Pearson Education, Hoboken, New Jersey.
4: template<class ItemType>
5: SortedListHasA<ItemType>::SortedListHasA()
6: : listPtr(std::make_unique<LinkedList<ItemType>>())
7: {
8: } // end default constructor