| 20 | double getLength() const { return m_length; } |
| 21 | double getWidth() const { return m_width; } |
| 22 | double getHeight() const { return m_height; } |
| 23 | |
| 24 | // Functions that add full support for comparison operators |
| 25 | std::partial_ordering operator<=>(const Box& aBox) const; |