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

Method getFirstBox

Examples/NoModules/Chapter 13/Ex13_10/Truckload.cpp:51–56  ·  view source on GitHub ↗

Only thing we changed was adding "Iterator::" to the member's qualification

Source from the content-addressed store, hash-verified

49
50// Only thing we changed was adding "Iterator::" to the member's qualification
51SharedBox Truckload::Iterator::getFirstBox()
52{
53 // Return m_head's box (or nullptr if the list is empty)
54 m_current = m_head;
55 return m_current? m_current->m_box : nullptr;
56}
57
58// Only thing we changed was adding "Iterator::" to the member's qualification
59SharedBox Truckload::Iterator::getNextBox()

Callers 1

Truckload.cppFile · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected