45 virtual int getAge()
const;
55 virtual bool decide(
double probability)
const;
59 virtual void print()
const;
Base class of every person in the city (adults and children)
virtual int getAge() const
Provides the age of the person.
virtual bool decide(double probability) const
Lets the person make a decision.
virtual ~AGPerson()
Cleans up everything.
virtual void print() const
Puts out a summary of the class properties.