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

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