| 12 | |
| 13 | public: |
| 14 | Carton(double length, double width, double height, std::string_view mat) |
| 15 | : Box{length, width, height}, m_material{mat} |
| 16 | { std::cout << "Carton(double,double,double,string_view) called.\n"; } |
| 17 | |
| 18 | private: |
| 19 | std::string m_material {"Cardboard"}; |
nothing calls this directly
no outgoing calls
no test coverage detected