| 4 | #include <cmath> // For the min() and max() function templates |
| 5 | |
| 6 | double Box::volume() const |
| 7 | { |
| 8 | return m_length * m_width * m_height; |
| 9 | } |
| 10 | |
| 11 | // Overloaded += operator |
| 12 | Box& Box::operator+=(const Box& aBox) |
no outgoing calls
no test coverage detected