FunctionWrapper2< T, U, V > Class Template Reference

FunctionWrapper2< T, U, V > Class Template Reference

#include <qtconcurrentfunctionwrappers.h>

Class Description

template<typename T, typename U, typename V>
class QtConcurrent::FunctionWrapper2< T, U, V >

Definition at line 94 of file qtconcurrentfunctionwrappers.h.

Public Types

typedef T(* FunctionPointerType) (U u, V v)
 
typedef T result_type
 

Public Member Functions

 FunctionWrapper2 (FunctionPointerType _functionPointer)
 
operator() (U u, V v)
 

Member Typedef Documentation

typedef T(* FunctionPointerType) (U u, V v)

Definition at line 97 of file qtconcurrentfunctionwrappers.h.

typedef T result_type

Definition at line 98 of file qtconcurrentfunctionwrappers.h.

Constructor & Destructor Documentation

FunctionWrapper2 ( FunctionPointerType  _functionPointer)
inline

Definition at line 99 of file qtconcurrentfunctionwrappers.h.

100  :functionPointer(_functionPointer) { }

Member Function Documentation

T operator() ( u,
v 
)
inline

Definition at line 102 of file qtconcurrentfunctionwrappers.h.

103  {
104  return functionPointer(u, v);
105  }
const GLdouble * v
Definition: GLee.h:1174

The documentation for this class was generated from the following file: