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

Method showVolume

Examples/NoModules/Chapter 15/Ex15_09/Box.h:13–14  ·  view source on GitHub ↗

Function to show the volume of an object

Source from the content-addressed store, hash-verified

11
12 // Function to show the volume of an object
13 void showVolume() const
14 { std::cout << "Box usable volume is " << volume() << std::endl; }
15
16 // Function to calculate the volume of a Box object
17 virtual double volume() const { return m_length * m_width * m_height; }

Callers 8

mainFunction · 0.45
mainFunction · 0.45
mainFunction · 0.45
mainFunction · 0.45
mainFunction · 0.45
mainFunction · 0.45
mainFunction · 0.45
mainFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected