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

Method addAnimal

Exercises/Modules/Chapter 15/Soln15_02/Zoo.cpp:14–17  ·  view source on GitHub ↗

Add an animal to the zoo

Source from the content-addressed store, hash-verified

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

Callers 1

mainFunction · 0.45

Calls 1

push_backMethod · 0.45

Tested by

no test coverage detected