| 6 | { |
| 7 | public: |
| 8 | Box() : Box{ 1.0, 1.0, 1.0 } {} |
| 9 | Box(double l, double w, double h) : m_length {l}, m_width {w}, m_height {h} {} |
| 10 | |
| 11 | // Function to show the volume of an object |
nothing calls this directly
no outgoing calls
no test coverage detected