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

Method Box

Examples/Modules/Chapter 12/Ex12_01A/Ex12_01A.cpp:9–9  ·  view source on GitHub ↗

Box() {} // Explicitly defined default constructor

Source from the content-addressed store, hash-verified

7public:
8// Box() {} // Explicitly defined default constructor
9 Box() = default; // Defaulted default constructor
10
11 // Constructor
12 Box(double length, double width, double height)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected