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

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