Return string describing the animal
| 20 | |
| 21 | // Return string describing the animal |
| 22 | std::string Animal::who() const |
| 23 | { |
| 24 | return "My name is " + getName() + ". My weight is " + std::to_string(getWeight()) + " lbs."; |
| 25 | } |
| 26 | |
| 27 | void Animal::setWeight(unsigned weight) |
| 28 | { |