#include <Iguana/Utilities/classlib/utils/Callback.h>
Public Member Functions | |
virtual void | call (void) |
CallbackImpF00 (void(*function)(void)) | |
virtual bool | equal (const CallbackRep *other) const |
Private Types | |
typedef CallbackImpF00 | self |
Private Attributes | |
void(* | m_function )(void) |
Definition at line 127 of file Callback.h.
typedef CallbackImpF00 lat::CallbackImpF00::self [private] |
Definition at line 129 of file Callback.h.
virtual bool lat::CallbackImpF00::equal | ( | const CallbackRep * | other | ) | const [inline, virtual] |
Implements lat::CallbackRep.
Definition at line 138 of file Callback.h.
References m_function, and x.
00139 { const self *x = dynamic_cast<const self *> (other); 00140 return x && x->m_function == m_function; }
void(* lat::CallbackImpF00::m_function)(void) [private] |
Referenced by equal().