Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
14
void Zoo::addAnimal(AnimalPtr animal)
15
{
16
m_animals.push_back(animal);
17
}
18
19
// Output the animals and the sound they make
20
void Zoo::showAnimals() const
Callers
1
main
Function · 0.45
Calls
1
push_back
Method · 0.45
Tested by
no test coverage detected