--- libev/ev++.h 2007/12/07 20:13:08 1.16 +++ libev/ev++.h 2007/12/11 03:18:33 1.18 @@ -22,9 +22,9 @@ ev_init (this, 0); } - void set_ (void *object, void (*cb)(EV_P_ ev_watcher *w, int revents)) + void set_ (void *data, void (*cb)(EV_P_ ev_watcher *w, int revents)) { - this->data = object; + this->data = data; ev_set_cb (static_cast(this), cb); } @@ -37,9 +37,8 @@ template static void method_thunk (EV_P_ ev_watcher *w, int revents) { - watcher *self = static_cast(w); - K *obj = static_cast(self->data); - (obj->*method) (*self, revents); + K *obj = static_cast(w->data); + (obj->*method) (*static_cast(w), revents); } template @@ -51,13 +50,12 @@ template static void const_method_thunk (EV_P_ ev_watcher *w, int revents) { - watcher *self = static_cast(w); - K *obj = static_cast(self->data); - (obj->*method) (*self, revents); + K *obj = static_cast(w->data); + (static_cast(w->data)->*method) (*static_cast(w), revents); } - template - void set () + template + void set (void *data = 0) { set_ (data, function_thunk); } @@ -65,8 +63,7 @@ template static void function_thunk (EV_P_ ev_watcher *w, int revents) { - watcher *self = static_cast(w); - function (*self, revents); + function (*static_cast(w), revents); } void operator ()(int events = EV_UNDEF)