1: // Created by Frank M. Carrano and Timothy M. Henry. 2: // Copyright (c) 2017 Pearson Education, Hoboken, New Jersey. 4: void displayBoxItem(PlainBox<std::string> thing) 5: { 6: std::cout << "The item stored in the box is " 7: << thing.getItem() << ".\n"; 8: } // end displayBoxItem