// File: main4.C // Use the second Box class #include #include "box2a.h" main() { Box b(4.0, 1.5, 3.0) ; cout << "Box b: \n" ; b.identify() ; b.rotate() ; b.identify() ; Box c ; // not Box c() ; cout << "\nBox c: \n" ; c.identify() ; c.spin() ; c.identify() ; }