Namespace example¶
Namespaces¶
Type | Name |
---|---|
namespace | inner_namespace |
Classes¶
Type | Name |
---|---|
class | Animal Base class for all animals from which Bird derives. |
interface | AnimalInterface |
class | Bird |
class | CustomException |
class | NumericException |
class | SpecialBird |
Public Types¶
Type | Name |
---|---|
typedef std::function< void *(Animal *)> | Callback Animal callback function definition. |
enum | CallbackType Different types of an Animal callback events. |
Public Types Documentation¶
typedef Callback¶
Animal callback function definition.
typedef std::function<void*(Animal*)> example::Callback;
enum CallbackType¶
Different types of an Animal callback events.
enum example::CallbackType {
NONE = 0,
EAT,
SLEEP,
ATTACK
};
The documentation for this class was generated from the following file demo-projects/animal/animal.h