Constructor definition
| 4 | |
| 5 | // Constructor definition |
| 6 | Box::Box(double length, double width, double height) |
| 7 | : m_length{ length }, m_width{ width }, m_height{ height } |
| 8 | { |
| 9 | std::cout << "Box constructor called." << std::endl; |
| 10 | } |
| 11 | |
| 12 | // Const member function definition |
| 13 | double Box::volume() const |
nothing calls this directly
no outgoing calls
no test coverage detected