#include <Iguana/Utilities/classlib/utils/Hook.h>
Public Member Functions | |
virtual R | call (T1 a) |
HookImpF11 (R(*function)(T1, T2), const T2 &fill_2) | |
Private Attributes | |
T2 | m_fill_2 |
R(* | m_function )(T1, T2) |
Definition at line 267 of file Hook.h.
lat::HookImpF11< R, T1, T2 >::HookImpF11 | ( | R(*)(T1, T2) | function, | |
const T2 & | fill_2 | |||
) | [inline] |
Definition at line 270 of file Hook.h.
00271 : m_function (function), 00272 m_fill_2 (fill_2) 00273 { }
virtual R lat::HookImpF11< R, T1, T2 >::call | ( | T1 | a | ) | [inline, virtual] |
Implements lat::Hook1Rep< R, T1 >.
Definition at line 275 of file Hook.h.
References lat::HookImpF11< R, T1, T2 >::m_fill_2, and lat::HookImpF11< R, T1, T2 >::m_function.
00276 { return (*m_function) (a, m_fill_2); }
T2 lat::HookImpF11< R, T1, T2 >::m_fill_2 [private] |
R(* lat::HookImpF11< R, T1, T2 >::m_function)(T1, T2) [private] |
Referenced by lat::HookImpF11< R, T1, T2 >::call().