| 9 | Box(double l, double w, double h) : m_length {l}, m_width {w}, m_height {h} {} |
| 10 | |
| 11 | double volume() const override { return m_length * m_width * m_height; } |
| 12 | |
| 13 | protected: // Should be private in production-quality code (add getters to access) |
| 14 | double m_length, m_width, m_height; |