#include <Iguana/Utilities/classlib/utils/Hook.h>
Public Member Functions | |
virtual R | call (T1 a, T2 b) |
HookImpC21 (C *object, R(C::*function)(T1, T2, T3), const T3 &fill_3) | |
Private Attributes | |
T3 | m_fill_3 |
R(C::* | m_function )(T1, T2, T3) |
C * | m_object |
Definition at line 399 of file Hook.h.
lat::HookImpC21< C, R, T1, T2, T3 >::HookImpC21 | ( | C * | object, | |
R(C::*)(T1, T2, T3) | function, | |||
const T3 & | fill_3 | |||
) | [inline] |
virtual R lat::HookImpC21< C, R, T1, T2, T3 >::call | ( | T1 | a, | |
T2 | b | |||
) | [inline, virtual] |
Implements lat::Hook2Rep< R, T1, T2 >.
Definition at line 408 of file Hook.h.
References lat::HookImpC21< C, R, T1, T2, T3 >::m_fill_3, lat::HookImpC21< C, R, T1, T2, T3 >::m_function, and lat::HookImpC21< C, R, T1, T2, T3 >::m_object.
00409 { return (m_object->*m_function) (a, b, m_fill_3); }
T3 lat::HookImpC21< C, R, T1, T2, T3 >::m_fill_3 [private] |
R(C::* lat::HookImpC21< C, R, T1, T2, T3 >::m_function)(T1, T2, T3) [private] |
Referenced by lat::HookImpC21< C, R, T1, T2, T3 >::call().
C* lat::HookImpC21< C, R, T1, T2, T3 >::m_object [private] |