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

Method Package

Examples/NoModules/Chapter 12/Ex12_17/Package.h:9–9  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

7{
8public:
9 Package(SharedBox box) : m_box{box}, m_next{nullptr} {} // Constructor
10 ~Package() { delete m_next; } // Destructor
11
12 // Retrieve the Box pointer

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected