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

Animals: /home/docs/checkouts/readthedocs.org/user_builds/doxysphinx-with-read-the-docs-template/checkouts/v1.0.0/lib/include/animal.h Source File
Animals  1.0.0
animal.h
1 class Animal {
3 public:
5  virtual void eat() const = 0;
6 
8  virtual void move() const = 0;
9 };
Abstract Animal class.
Definition: animal.h:2
virtual void eat() const =0
Pure virtual function to represent eating behavior of an animal.
virtual void move() const =0
Pure virtual function to represent moving behavior of an animal.