FunctionWrapper2< T, U, V > Class Template Reference


Detailed Description

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

Definition at line 94 of file qtconcurrentfunctionwrappers.h.

#include <qtconcurrentfunctionwrappers.h>

List of all members.

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)

Constructor & Destructor Documentation

FunctionWrapper2 ( FunctionPointerType  _functionPointer ) [inline]

Definition at line 99 of file qtconcurrentfunctionwrappers.h.

    :functionPointer(_functionPointer) { }

Member Function Documentation

T operator() ( u,
v 
) [inline]

Definition at line 102 of file qtconcurrentfunctionwrappers.h.

    {
        return functionPointer(u, v);
    }

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