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

Method getFirstBox

Exercises/Modules/Chapter 18/Soln18_01/Truckload.cpp:92–97  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

90
91// Only thing we changed was adding "Iterator::" to the member's qualification
92SharedBox Truckload::Iterator::getFirstBox()
93{
94 // Return m_head's box (or nullptr if the list is empty)
95 m_current = m_head;
96 return m_current? m_current->m_box : nullptr;
97}
98
99// Only thing we changed was adding "Iterator::" to the member's qualification
100SharedBox Truckload::Iterator::getNextBox()

Callers 1

Truckload.cppFile · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected