| 14 | double getLength() const { return m_length; } |
| 15 | double getWidth() const { return m_width; } |
| 16 | double getHeight() const { return m_height; } |
| 17 | |
| 18 | bool operator<(const Box& aBox) const // Less-than operator |
| 19 | { return volume() < aBox.volume(); } |