Definition at line 760 of file qtconcurrentstoredfunctioncall.h.
#include <qtconcurrentstoredfunctioncall.h>

Public Member Functions |
|
| VoidStoredMemberFunctionCall3 (T(Class::*_fn)(Param1, Param2, Param3), const Class &_object, const Arg1 &_arg1, const Arg2 &_arg2, const Arg3 &_arg3) | |
| void | runFunctor () |
| VoidStoredMemberFunctionCall3 | ( | T(Class::*)(Param1, Param2, Param3) | _fn, |
| const Class & | _object, | ||
| const Arg1 & | _arg1, | ||
| const Arg2 & | _arg2, | ||
| const Arg3 & | _arg3 | ||
| ) | [inline] |
Definition at line 763 of file qtconcurrentstoredfunctioncall.h.
: fn(_fn), object(_object), arg1(_arg1), arg2(_arg2), arg3(_arg3){ }
| void runFunctor | ( | ) | [inline, virtual] |
Implements RunFunctionTaskBase< T >.
Definition at line 766 of file qtconcurrentstoredfunctioncall.h.
{
(object.*fn)(arg1, arg2, arg3);
}