Doxybook Example
animal.h
Go to the documentation of this file.
1 #ifndef EXAMPLE_ANIMAL_H
2 #define EXAMPLE_ANIMAL_H
3 
4 #include <functional>
5 #include "animal_interface.h"
6 
31 namespace example {
37  namespace inner_namespace {
38  class Vector {
39  int x, y, z;
40  };
41  }
66  class Animal: public AnimalInterface {
67  public:
73  enum Type {
74  NONE = 0,
75  INSECT = 1,
76  AMPHIBIAN = 2,
77  BIRD = 3,
78  FISH = 4,
79  REPTILE = 5,
80  MAMMAL = 6
81  };
82 
83  typedef std::pair<Animal*, Animal*> Parents;
87  struct Result {
88  const Type type = Type::NONE;
89  const std::string name;
90  const Animal* mother = nullptr;
91  const Animal* father = nullptr;
92  };
93 
94  static Animal* find_parent_by_name(Animal* child);
95  static Animal* find_child_by_name(Animal* parent);
96 
104  Animal(Type type, const std::string& name, Animal* mother = nullptr, Animal* father = nullptr);
105  Animal(const Animal& other) = delete;
106  Animal(Animal&& animal) noexcept;
107  virtual ~Animal() = default;
108 
113  operator bool() const;
114 
115  void swap(Animal& other) noexcept;
116 
121  int get_num_of_limbs() const override;
122 
127  int get_num_of_eyes() const override;
128 
135  bool has_tail() const override;
136 
137  virtual void move();
138  virtual void make_sound() = 0;
139 
140  inline Parents get_parents() const {
141  return Parents(mother, father);
142  }
143 
148  inline const std::string& get_name() const {
149  return name;
150  }
161  inline void some_inline_member_function(Animal* animal) {
165  do_more_things();
166 
171  check_best();
172  }
173 
177  Animal& operator = (const Animal& other) = delete;
181  Animal& operator = (Animal&& other) noexcept;
182 
183  friend void some_global_function(Animal* animal);
184 
185  protected:
196  std::string name;
197  };
198 
205  void some_namespace_function(Animal* animal);
209  typedef std::function<void*(Animal*)> Callback;
213  enum class CallbackType {
214  NONE = 0,
215  EAT,
216  SLEEP,
217  ATTACK
218  };
219 }
220 
227 extern void some_global_function(example::Animal* animal);
228 
229 #endif
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.h:31
Definition: animal_interface.h:11
Type
The 6 classes of animal kingdom.
Definition: animal.h:73
Definition: animal.h:38
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