Constructors
| 8 | public: |
| 9 | // Constructors |
| 10 | Box() = default; |
| 11 | Box(double length, double width, double height); |
| 12 | |
| 13 | double volume() const; // Const function to calculate the volume of a box |
nothing calls this directly
no outgoing calls
no test coverage detected