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

Method Box

Examples/NoModules/Chapter 13/Ex13_03A/Box.h:10–10  ·  view source on GitHub ↗

Constructors

Source from the content-addressed store, hash-verified

8public:
9 // Constructors
10 Box() = default;
11 Box(double l, double w, double h) : m_length{ l }, m_width{ w }, m_height{ h } {}
12
13 double volume() const { return m_length * m_width * m_height; }

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected