Source of removeStub.cpp


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

  4: // STUB
  5:  template<class ItemType>
  6:  bool ArrayBag<ItemType>::remove(const ItemType& anEntry)
  7:  {
  8:     return false; // STUB
  9:  }  // end remove