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