Doxybook Example
Namespaces | Classes | Typedefs | Enumerations | Functions
example Namespace Reference

Namespaces

 inner_namespace
 

Classes

class  Animal
 Base class for all animals from which Bird derives. More...
 
interface  AnimalInterface
 
class  Bird
 
class  CustomException
 
class  NumericException
 
class  SpecialBird
 

Typedefs

typedef std::function< void *(Animal *)> Callback
 Animal callback function definition. More...
 

Enumerations

enum  CallbackType { CallbackType::NONE = 0, CallbackType::EAT, CallbackType::SLEEP, CallbackType::ATTACK }
 Different types of an Animal callback events. More...
 

Functions

void some_namespace_function (Animal *animal)
 Some random namespace function that modifies Animal. More...
 

Typedef Documentation

◆ Callback

typedef std::function<void*(Animal*)> example::Callback

Animal callback function definition.

Enumeration Type Documentation

◆ CallbackType

enum example::CallbackType
strong

Different types of an Animal callback events.

Enumerator
NONE 
EAT 
SLEEP 
ATTACK