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