Constructor for a cube (explicit!)
| 8 | Box(double length, double width, double height); |
| 9 | explicit Box(double side); // Constructor for a cube (explicit!) |
| 10 | Box() = default; // Defaulted default constructor |
| 11 | Box(const Box& box); // Copy constructor |
| 12 | |
| 13 | double volume(); // Function to calculate the volume of a box |
nothing calls this directly
no outgoing calls
no test coverage detected