Doxybook Example
Public Member Functions | List of all members
example::AnimalInterface Interface Referenceabstract

#include <animal_interface.h>

Inheritance diagram for example::AnimalInterface:
Inheritance graph
[legend]

Public Member Functions

virtual int get_num_of_limbs () const =0
 Returns the number of limbs. More...
 
virtual int get_num_of_eyes () const =0
 Returns the number of eyes. More...
 
virtual bool has_tail () const =0
 Returns true if the animal has a tail. More...
 

Member Function Documentation

◆ get_num_of_eyes()

virtual int example::AnimalInterface::get_num_of_eyes ( ) const
pure virtual

Returns the number of eyes.

See also
get_num_of_limbs

Implemented in example::Animal.

◆ get_num_of_limbs()

virtual int example::AnimalInterface::get_num_of_limbs ( ) const
pure virtual

Returns the number of limbs.

See also
get_num_of_eyes

Implemented in example::Animal.

◆ has_tail()

virtual bool example::AnimalInterface::has_tail ( ) const
pure virtual

Returns true if the animal has a tail.

See also
get_num_of_limbs
Return values
trueDoes have a tail
falseDoes not have a tail

Implemented in example::Animal.


The documentation for this interface was generated from the following file: