Constructor from a vector of animals
| 7 | |
| 8 | // Constructor from a vector of animals |
| 9 | Zoo::Zoo(const std::vector<AnimalPtr>& animals) |
| 10 | : m_animals{ animals } |
| 11 | {} |
| 12 | |
| 13 | // Add an animal to the zoo |
| 14 | void Zoo::addAnimal(AnimalPtr animal) |
nothing calls this directly
no outgoing calls
no test coverage detected