Eobj: Added EOBJ_SIG_CALLBACK_ADD/DEL to Eobj's Event desc.

SVN revision: 70229
This commit is contained in:
Tom Hacohen 2012-04-16 14:22:04 +00:00
parent bb25247d46
commit 94efb39c34
1 changed files with 7 additions and 1 deletions

View File

@ -1275,11 +1275,17 @@ eobj_base_class_get(void)
{
if (_my_class) return _my_class;
static const Eobj_Event_Description *event_desc[] = {
EOBJ_SIG_CALLBACK_ADD,
EOBJ_SIG_CALLBACK_DEL,
NULL
};
static const Eobj_Class_Description class_desc = {
"Eobj Base",
EOBJ_CLASS_TYPE_REGULAR_NO_INSTANT,
EOBJ_CLASS_DESCRIPTION_OPS(NULL, NULL, 0),
NULL,
event_desc,
0,
_constructor,
_destructor,