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

Method showVolume

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

Function to show the volume of an object

Source from the content-addressed store, hash-verified

10
11 // Function to show the volume of an object
12 void showVolume() const
13 { std::cout << "Box usable volume is " << volume() << std::endl; }
14
15 // Function to calculate the volume of a Box object
16 virtual double volume(int i = 5) const

Callers 1

mainFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected