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

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