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

Method Package

Examples/Modules/Chapter 12/Ex12_17/Package.cpp:8–8  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected