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

Method Truckload

Exercises/Modules/Chapter 16/Soln16_03/Truckload.cpp:21–24  ·  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

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected