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