| 1 | #include "Box.h" |
| 2 | |
| 3 | Box::Box() : Box{ 1.0, 1.0, 1.0 } {} |
| 4 | Box::Box(double length, double width, double height) |
| 5 | : m_length{ length }, m_width{ width }, m_height{ height } |
| 6 | {} |
nothing calls this directly
no outgoing calls
no test coverage detected