#include <Iguana/Utilities/classlib/utils/Hook.h>
Public Member Functions | |
virtual R | call (T1 a, T2 b) |
HookImpF22 (R(*function)(T1, T2, T3, T4), const T3 &fill_3, const T4 &fill_4) | |
Private Attributes | |
T3 | m_fill_3 |
T4 | m_fill_4 |
R(* | m_function )(T1, T2, T3, T4) |
Definition at line 419 of file Hook.h.
lat::HookImpF22< R, T1, T2, T3, T4 >::HookImpF22 | ( | R(*)(T1, T2, T3, T4) | function, | |
const T3 & | fill_3, | |||
const T4 & | fill_4 | |||
) | [inline] |
virtual R lat::HookImpF22< R, T1, T2, T3, T4 >::call | ( | T1 | a, | |
T2 | b | |||
) | [inline, virtual] |
Implements lat::Hook2Rep< R, T1, T2 >.
Definition at line 428 of file Hook.h.
References lat::HookImpF22< R, T1, T2, T3, T4 >::m_fill_3, lat::HookImpF22< R, T1, T2, T3, T4 >::m_fill_4, and lat::HookImpF22< R, T1, T2, T3, T4 >::m_function.
00429 { return (*m_function) (a, b, m_fill_3, m_fill_4); }
T3 lat::HookImpF22< R, T1, T2, T3, T4 >::m_fill_3 [private] |
T4 lat::HookImpF22< R, T1, T2, T3, T4 >::m_fill_4 [private] |
R(* lat::HookImpF22< R, T1, T2, T3, T4 >::m_function)(T1, T2, T3, T4) [private] |
Referenced by lat::HookImpF22< R, T1, T2, T3, T4 >::call().