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

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