Constructor definition (inline because this member is defined in a header file: see online Appendix A)
| 21 | // Constructor definition |
| 22 | // (inline because this member is defined in a header file: see online Appendix A) |
| 23 | inline Box::Box(double length, double width, double height) |
| 24 | : m_length{ length }, m_width{ width }, m_height{ height } |
| 25 | { |
| 26 | std::cout << "Box constructor called." << std::endl; |
| 27 | } |
| 28 | |
| 29 | // Member function definition |
| 30 | // (inline because this member is defined in a header file: see online Appendix A) |
nothing calls this directly
no outgoing calls
no test coverage detected