Source of constructorsAndDestructor.cpp


  1: //  Created by Frank M. Carrano and Timothy M. Henry.
  2: //  Copyright (c) 2017 Pearson Education, Hoboken, New Jersey.

  4: template<class ItemType>
  5: SortedListIsA<ItemType>::SortedListIsA()
  6: {
  7: }  // end default constructor

  9: template<class ItemType>
 10: SortedListIsA<ItemType>::SortedListIsA(const SortedListIsA<ItemType>& sList)
 11:                                                   : LinkedList<ItemType>(sList)
 12: {
 13: }  // end copy constructor

 15: template<class ItemType>
 16: SortedListIsA<ItemType>::~SortedListIsA()
 17: {
 18: }  // end destructor