// Created by Frank M. Carrano and Tim Henry. // Copyright (c) 2013 __Pearson Education__. All rights reserved. /** Listing C1-5. @file ToyBox.h */ #ifndef _TOY_BOX #define _TOY_BOX #include "PlainBox.h" enum Color {BLACK, RED, BLUE, GREEN, YELLOW, WHITE}; template class ToyBox : public PlainBox { private: Color boxColor; public: ToyBox(); ToyBox(const Color& theColor); ToyBox(const ItemType& theItem, const Color& theColor); Color getColor() const; }; // end ToyBox #include "ToyBox.cpp" #endif