| 3 | #define BOX_H |
| 4 | |
| 5 | class Box |
| 6 | { |
| 7 | public: |
| 8 | Box(); |
| 9 | Box(double length, double width, double height); |
| 10 | |
| 11 | double getLength() const; |
| 12 | double getWidth() const; |
| 13 | double getHeight() const; |
| 14 | |
| 15 | double volume() const; |
| 16 | |
| 17 | private: |
| 18 | double m_length; |
| 19 | double m_width; |
| 20 | double m_height; |
| 21 | }; |
| 22 | |
| 23 | #endif |
nothing calls this directly
no outgoing calls
no test coverage detected