Definition at line 59 of file qtconcurrentfunctionwrappers.h.
#include <qtconcurrentfunctionwrappers.h>
Public Types |
|
| typedef T(* | FunctionPointerType )() |
| typedef T | result_type |
Public Member Functions |
|
| FunctionWrapper0 (FunctionPointerType _functionPointer) | |
| T | operator() () |
| typedef T(* FunctionPointerType)() |
Definition at line 62 of file qtconcurrentfunctionwrappers.h.
| typedef T result_type |
Definition at line 63 of file qtconcurrentfunctionwrappers.h.
| FunctionWrapper0 | ( | FunctionPointerType | _functionPointer | ) | [inline] |
Definition at line 64 of file qtconcurrentfunctionwrappers.h.
:functionPointer(_functionPointer) { }
| T operator() | ( | ) | [inline] |
Definition at line 67 of file qtconcurrentfunctionwrappers.h.
{
return functionPointer();
}