ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/libev/ev++.h
(Generate patch)

Comparing libev/ev++.h (file contents):
Revision 1.58 by root, Tue Nov 29 15:10:05 2011 UTC vs.
Revision 1.59 by root, Wed May 9 16:50:23 2012 UTC

284 } 284 }
285 285
286 template<class K, void (K::*method)(int)> 286 template<class K, void (K::*method)(int)>
287 static void method_thunk (int revents, void *arg) 287 static void method_thunk (int revents, void *arg)
288 { 288 {
289 static_cast<K *>(arg)->*method 289 (static_cast<K *>(arg)->*method)
290 (revents); 290 (revents);
291 } 291 }
292 292
293 // no-argument method callback 293 // no-argument method callback
294 template<class K, void (K::*method)()> 294 template<class K, void (K::*method)()>
298 } 298 }
299 299
300 template<class K, void (K::*method)()> 300 template<class K, void (K::*method)()>
301 static void method_noargs_thunk (int revents, void *arg) 301 static void method_noargs_thunk (int revents, void *arg)
302 { 302 {
303 static_cast<K *>(arg)->*method 303 (static_cast<K *>(arg)->*method)
304 (); 304 ();
305 } 305 }
306 306
307 // simpler function callback 307 // simpler function callback
308 template<void (*cb)(int)> 308 template<void (*cb)(int)>
511 return ev_is_pending (static_cast<const ev_watcher *>(this)); 511 return ev_is_pending (static_cast<const ev_watcher *>(this));
512 } 512 }
513 513
514 void feed_event (int revents) throw () 514 void feed_event (int revents) throw ()
515 { 515 {
516 ev_feed_event (EV_A_ static_cast<const ev_watcher *>(this), revents); 516 ev_feed_event (EV_A_ static_cast<ev_watcher *>(this), revents);
517 } 517 }
518 }; 518 };
519 519
520 inline tstamp now (EV_P) throw () 520 inline tstamp now (EV_P) throw ()
521 { 521 {

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines