Definition at line 128 of file qtconcurrentfunctionwrappers.h.
#include <qtconcurrentfunctionwrappers.h>
Public Types |
|
| typedef T(C::* | FunctionPointerType )(U) |
| typedef T | result_type |
Public Member Functions |
|
| MemberFunctionWrapper1 (FunctionPointerType _functionPointer) | |
| T | operator() (C &c, U u) |
| typedef T(C::* FunctionPointerType)(U) |
Definition at line 131 of file qtconcurrentfunctionwrappers.h.
| typedef T result_type |
Definition at line 132 of file qtconcurrentfunctionwrappers.h.
| MemberFunctionWrapper1 | ( | FunctionPointerType | _functionPointer | ) | [inline] |
Definition at line 134 of file qtconcurrentfunctionwrappers.h.
: functionPointer(_functionPointer)
{ }
| T operator() | ( | C & | c, |
| U | u | ||
| ) | [inline] |
Definition at line 138 of file qtconcurrentfunctionwrappers.h.
{
return (c.*functionPointer)(u);
}