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