Consider the class Rectangle: class Rectangle { public: Rectangle(double 1, double w); double area() const; double getLength() const; double getWidth() const; private: double length; double width; }; (a) Derive a class Box from the class Rectangle. Provide only the interface for the class Box. The class Box has an additional private member variable height, and an additional public member function volume(). Include an accessor for the member variable height. Redefine the a