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

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