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

Method Truckload

Examples/Modules/Chapter 12/Ex12_17/Truckload.cpp:6–9  ·  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

4
5// Constructor - one Box (moved to source file to gain access to definition of Package)
6Truckload::Truckload(SharedBox box)
7{
8 m_head = m_tail = new Package{ box };
9}
10
11// Constructor - vector of Boxes
12Truckload::Truckload(const std::vector<SharedBox>& boxes)

Callers

nothing calls this directly

Calls 2

getNextMethod · 0.45
getBoxMethod · 0.45

Tested by

no test coverage detected