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

Method Truckload

Examples/Modules/Chapter 12/Ex12_18/Truckload.cpp:5–8  ·  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

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected