1: // Created by Frank M. Carrano and Tim Henry.
2: // Copyright (c) 2013 __Pearson Education__. All rights reserved.
4: template <class KeyType, class ItemType>
5: bool Entry<KeyType, ItemType>::operator==(const Entry<KeyType, ItemType>& rightHandItem) const
6: {
7: return (searchKey == rightHandItem.getKey());
8: } // end operator==