MCPcopy Create free account
hub / github.com/Apress/beginning-cpp20 / Truckload

Method Truckload

Exercises/Modules/Chapter 18/Soln18_01/Truckload.cpp:22–25  ·  view source on GitHub ↗

Constructor - one Box (moved to source file to gain access to definition of Package)

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected