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