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

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