1 #ifndef EXAMPLE_ANIMAL_H 2 #define EXAMPLE_ANIMAL_H 37 namespace inner_namespace {
83 typedef std::pair<Animal*, Animal*>
Parents;
107 virtual ~
Animal() =
default;
113 operator bool()
const;
115 void swap(
Animal& other) noexcept;
121 int get_num_of_limbs()
const override;
127 int get_num_of_eyes()
const override;
135 bool has_tail()
const override;
138 virtual void make_sound() = 0;
141 return Parents(mother, father);
Parents get_parents() const
Definition: animal.h:140
void some_namespace_function(Animal *animal)
Some random namespace function that modifies Animal.
void some_global_function(example::Animal *animal)
Some random global function that modifies Animal.
CallbackType
Different types of an Animal callback events.
Definition: animal.h:213
std::function< void *(Animal *)> Callback
Animal callback function definition.
Definition: animal.h:209
Some random inner class of Animal.
Definition: animal.h:87
std::pair< Animal *, Animal * > Parents
Definition: animal.h:83
Definition: animal_interface.h:11
Type
The 6 classes of animal kingdom.
Definition: animal.h:73
Animal * father
The pointer to the father.
Definition: animal.h:195
Animal * mother
The pointer to the mother.
Definition: animal.h:190
const std::string & get_name() const
Get the name of the animal.
Definition: animal.h:148
const std::string name
Definition: animal.h:89
Base class for all animals from which Bird derives.
Definition: animal.h:66
void some_inline_member_function(Animal *animal)
Lorem Ipsum.
Definition: animal.h:161
std::string name
Definition: animal.h:196