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

Method addAnimal

Exercises/NoModules/Chapter 15/Soln15_03/Zoo.cpp:12–15  ·  view source on GitHub ↗

Add an animal to the zoo

Source from the content-addressed store, hash-verified

10
11// Add an animal to the zoo
12void Zoo::addAnimal(AnimalPtr animal)
13{
14 m_animals.push_back(animal);
15}
16
17// Output the animals and the sound they make
18void Zoo::showAnimals() const

Callers 1

mainFunction · 0.45

Calls 1

push_backMethod · 0.45

Tested by

no test coverage detected