| 11 | Box(double l, double w, double h) : m_length{ l }, m_width{ w }, m_height{ h } {} |
| 12 | |
| 13 | double volume() const { return m_length * m_width * m_height; } |
| 14 | |
| 15 | // Accessors |
| 16 | double getLength() const { return m_length; } |
no outgoing calls
no test coverage detected