#include <Iguana/Utilities/classlib/utils/Hook.h>
Public Member Functions | |
virtual R | call (void) |
HookImpC02 (C *object, R(C::*function)(T1, T2), const T1 &fill_1, const T2 &fill_2) | |
Private Attributes | |
T1 | m_fill_1 |
T2 | m_fill_2 |
R(C::* | m_function )(T1) |
C * | m_object |
Definition at line 211 of file Hook.h.
lat::HookImpC02< C, R, T1, T2 >::HookImpC02 | ( | C * | object, | |
R(C::*)(T1, T2) | function, | |||
const T1 & | fill_1, | |||
const T2 & | fill_2 | |||
) | [inline] |
virtual R lat::HookImpC02< C, R, T1, T2 >::call | ( | void | ) | [inline, virtual] |
Implements lat::HookRep< R >.
Definition at line 221 of file Hook.h.
References lat::HookImpC02< C, R, T1, T2 >::m_fill_1, lat::HookImpC02< C, R, T1, T2 >::m_fill_2, lat::HookImpC02< C, R, T1, T2 >::m_function, and lat::HookImpC02< C, R, T1, T2 >::m_object.
00222 { return (m_object->*m_function) (m_fill_1, m_fill_2); }
T1 lat::HookImpC02< C, R, T1, T2 >::m_fill_1 [private] |
T2 lat::HookImpC02< C, R, T1, T2 >::m_fill_2 [private] |
R(C::* lat::HookImpC02< C, R, T1, T2 >::m_function)(T1) [private] |
Referenced by lat::HookImpC02< C, R, T1, T2 >::call().
C* lat::HookImpC02< C, R, T1, T2 >::m_object [private] |