Doxybook Example
|
Base class for all animals from which Bird derives. More...
#include <animal.h>
Classes | |
struct | Result |
Some random inner class of Animal. More... | |
Public Types | |
enum | Type { NONE = 0, INSECT = 1, AMPHIBIAN = 2, BIRD = 3, FISH = 4, REPTILE = 5, MAMMAL = 6 } |
The 6 classes of animal kingdom. More... | |
typedef std::pair< Animal *, Animal * > | Parents |
Public Member Functions | |
Animal (Type type, const std::string &name, Animal *mother=nullptr, Animal *father=nullptr) | |
The main constructor. More... | |
Animal (const Animal &other)=delete | |
Animal (Animal &&animal) noexcept | |
virtual | ~Animal ()=default |
operator bool () const | |
Returns true if this is an valid animal. More... | |
void | swap (Animal &other) noexcept |
int | get_num_of_limbs () const override |
Returns the number of limbs. More... | |
int | get_num_of_eyes () const override |
Returns the number of eyes. More... | |
bool | has_tail () const override |
Returns true if the animal has a tail. More... | |
virtual void | move () |
virtual void | make_sound ()=0 |
Parents | get_parents () const |
const std::string & | get_name () const |
Get the name of the animal. More... | |
void | some_inline_member_function (Animal *animal) |
Lorem Ipsum. More... | |
Animal & | operator= (const Animal &other)=delete |
Deleted copy operator. More... | |
Animal & | operator= (Animal &&other) noexcept |
Move operator. More... | |
Static Public Member Functions | |
static Animal * | find_parent_by_name (Animal *child) |
static Animal * | find_child_by_name (Animal *parent) |
Protected Attributes | |
Animal * | mother |
The pointer to the mother. More... | |
Animal * | father |
The pointer to the father. More... | |
std::string | name |
Friends | |
void | some_global_function (Animal *animal) |
Some random global function that modifies Animal. More... | |
Base class for all animals from which Bird derives.
Lorem Ipsum Donor. Some Random link with bold and italics And the following is a typewritter
font.
Example code:
T | Some random template paramater description which actually does not exist in the code! |
typedef std::pair<Animal*, Animal*> example::Animal::Parents |
example::Animal::Animal | ( | Type | type, |
const std::string & | name, | ||
Animal * | mother = nullptr , |
||
Animal * | father = nullptr |
||
) |
The main constructor.
Use this constructor to allocate a new instance of Animal
type | The type of the animal that matches Animal::Type |
name | Any name to associate the animal with |
CustomException | If either only mother or father is assigned |
|
delete |
|
noexcept |
|
virtualdefault |
|
inline |
Get the name of the animal.
|
overridevirtual |
Returns the number of eyes.
Implements example::AnimalInterface.
|
overridevirtual |
Returns the number of limbs.
Implements example::AnimalInterface.
|
inline |
|
overridevirtual |
Returns true if the animal has a tail.
true | Does have a tail |
false | Does not have a tail |
Implements example::AnimalInterface.
|
pure virtual |
Implemented in example::Bird.
|
virtual |
Reimplemented in example::Bird.
example::Animal::operator bool | ( | ) | const |
Returns true if this is an valid animal.
Lorem Ipsum returns true
|
inline |
Lorem Ipsum.
animal | The pointer to the animal instance |
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
Does some more things
Checks that the things it does are the best
|
noexcept |
|
friend |
|
protected |
The pointer to the father.
Can be null!
|
protected |
The pointer to the mother.
Can be null!
|
protected |