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

Public Member Functions |
|
| VoidStoredMemberFunctionCall0 (T(Class::*_fn)(), const Class &_object) | |
| void | runFunctor () |
| VoidStoredMemberFunctionCall0 | ( | T(Class::*)() | _fn, |
| const Class & | _object | ||
| ) | [inline] |
Definition at line 133 of file qtconcurrentstoredfunctioncall.h.
: fn(_fn), object(_object){ }
| void runFunctor | ( | ) | [inline, virtual] |
Implements RunFunctionTaskBase< T >.
Definition at line 136 of file qtconcurrentstoredfunctioncall.h.
{
(object.*fn)();
}