// Created by Frank M. Carrano and Tim Henry. // Copyright (c) 2013 __Pearson Education__. All rights reserved. template void MagicBox::setItem(const ItemType& theItem) { if (!firstItemStored) { PlainBox::setItem(theItem); firstItemStored = true; // Box now has magic } // end if } // end setItem