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