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