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

Method getFirstBox

Examples/Modules/Chapter 12/Ex12_18/Truckload.cpp:48–53  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

46
47
48SharedBox Truckload::getFirstBox()
49{
50 // Return m_head's box (or nullptr if the list is empty)
51 m_current = m_head;
52 return m_current? m_current->m_box : nullptr;
53}
54
55SharedBox Truckload::getNextBox()
56{

Callers 1

mainFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected