| 5 | { |
| 6 | public: |
| 7 | Box() : Box{ 1.0, 1.0, 1.0} {} // A delegating default constructor |
| 8 | Box(double length, double width, double height); |
| 9 | |
| 10 | double volume() const; // Function to calculate the volume of a box |
nothing calls this directly
no outgoing calls
no test coverage detected