7 void eat()
const override;
10 void move()
const override;
Abstract Animal class.
Definition: animal.h:2
Derived class representing a Cat.
Definition: cat.h:4
void eat() const override
Implementation of the eat function for a Cat.
Definition: cat.cpp:5
void move() const override
Implementation of the move function for a Cat.
Definition: cat.cpp:7