// Created by Frank M. Carrano and Tim Henry. // Copyright (c) 2013 __Pearson Education__. All rights reserved. /** @file GoodMemory.h Listing C2-2 */ #include #include "ToyBox.h" using namespace std; class GoodMemory { private: ToyBox* someBoxPtr; public: GoodMemory(); // Default constructor ~GoodMemory(); // Destructor void fixedLeak(const double& someItem); }; // end GoodMemory