Constructor - one Box (moved to source file to gain access to definition of Package)
| 17 | |
| 18 | // Constructor - one Box (moved to source file to gain access to definition of Package) |
| 19 | Truckload::Truckload(SharedBox box) |
| 20 | { |
| 21 | m_head = m_tail = new Package{ box }; |
| 22 | } |
| 23 | |
| 24 | // Constructor - vector of Boxes |
| 25 | Truckload::Truckload(const std::vector<SharedBox>& boxes) |
nothing calls this directly
no outgoing calls
no test coverage detected