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

Method Truckload

Exercises/NoModules/Chapter 20/Soln20_01/Truckload.cpp:7–10  ·  view source on GitHub ↗

Constructor - one Box

Source from the content-addressed store, hash-verified

5
6// Constructor - one Box
7Truckload::Truckload(SharedBox box)
8 : m_boxes{ 1, box }
9{
10}
11
12// Constructor - vector of Boxes
13Truckload::Truckload(std::vector<SharedBox> boxes)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected