Functions to provide access to the values of member variables (all const!)
| 13 | |
| 14 | // Functions to provide access to the values of member variables (all const!) |
| 15 | double getLength() const { return m_length; } |
| 16 | double getWidth() const { return m_width; } |
| 17 | double getHeight() const { return m_height; } |
| 18 |