/home/docs/checkouts/readthedocs.org/user_builds/doxysphinx-with-read-the-docs-template/checkouts/v1.0.0/lib/include/cat.h Source File

Animals: /home/docs/checkouts/readthedocs.org/user_builds/doxysphinx-with-read-the-docs-template/checkouts/v1.0.0/lib/include/cat.h Source File
Animals  1.0.0
cat.h
1 #include "animal.h"
2 
4 class Cat : public Animal {
5 public:
7  void eat() const override;
8 
10  void move() const override;
11 };
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