Constructor definition
| 27 | |
| 28 | // Constructor definition |
| 29 | Box::Box(double length, double width, double height) |
| 30 | : m_length{length}, m_width{width}, m_height{height} |
| 31 | { |
| 32 | std::cout << "Box constructor called." << std::endl; |
| 33 | } |
| 34 | |
| 35 | // Member function definition |
| 36 | double Box::volume() |
nothing calls this directly
no outgoing calls
no test coverage detected