// Created by Frank M. Carrano and Tim Henry. // Copyright (c) 2013 __Pearson Education__. All rights reserved. /** Listing C1-4 @file PlainBox.cpp */ #include "PlainBox.h" template PlainBox::PlainBox() { } // end default constructor template PlainBox::PlainBox(const ItemType& theItem) { item = theItem; } // end constructor template void PlainBox::setItem(const ItemType& theItem) { item = theItem; } // end setItem template ItemType PlainBox::getItem() const { return item; } // end getItem