This struct holds the description of a class. More...
Data Fields | |
unsigned int | version |
The current version of eo, use EO_VERSION. | |
const char * | name |
The name of the class. More... | |
Eo_Class_Type | type |
The type of the class. More... | |
Eo_Ops | ops |
The ops description, should be filled using #EO_CLASS_DESCRIPTION_OPS (later sorted by Eo). More... | |
const Eo_Event_Description ** | events |
The event descriptions for this class. More... | |
size_t | data_size |
The size of data (private + protected + public) this class needs per object. More... | |
void(* | class_constructor )(Eo_Class *klass) |
The constructor of the class. More... | |
void(* | class_destructor )(Eo_Class *klass) |
The destructor of the class. More... | |
This struct holds the description of a class.
This description should be passed to eo_class_new. Please use the #EO_CLASS_DESCRIPTION_OPS macro when populating it.
const char* _Eo_Class_Description::name |
The name of the class.
Referenced by eo_class_name_get().
Eo_Class_Type _Eo_Class_Description::type |
The type of the class.
Eo_Ops _Eo_Class_Description::ops |
The ops description, should be filled using #EO_CLASS_DESCRIPTION_OPS (later sorted by Eo).
Referenced by eo_class_name_get().
const Eo_Event_Description** _Eo_Class_Description::events |
The event descriptions for this class.
size_t _Eo_Class_Description::data_size |
The size of data (private + protected + public) this class needs per object.
void(* _Eo_Class_Description::class_constructor) (Eo_Class *klass) |
The constructor of the class.
void(* _Eo_Class_Description::class_destructor) (Eo_Class *klass) |
The destructor of the class.