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