// Created by Frank M. Carrano and Tim Henry. // Copyright (c) 2013 __Pearson Education__. All rights reserved. /** @file TreeDictionary.cpp */ #include "TreeDictionary.h" template bool TreeDictionary::add(const KeyType& searchKey, const ItemType& newItem) { return itemTree.add(Entry(newItem, searchKey)); } // end add template bool TreeDictionary::remove(const const KeyType& itemKey) { return itemTree.remove(Entry(ItemType(), itemKey)); } // end remove