Return string describing the animal
| 9 | |
| 10 | // Return string describing the animal |
| 11 | std::string Animal::who() const |
| 12 | { |
| 13 | return "My name is " + m_name + ". My weight is " + std::to_string(m_weight) + " lbs."; |
| 14 | } |
| 15 | |
| 16 | // Sheep constructors |
| 17 | Sheep::Sheep(std::string_view name, unsigned weight) |