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

Animals: /home/docs/checkouts/readthedocs.org/user_builds/doxysphinx-with-read-the-docs-template/checkouts/v1.0.0/lib/include/dog.h Source File
Animals  1.0.0
dog.h
1 #include "animal.h"
2 
4 class Dog : 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 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