StoredFunctorPointerCall5< T, FunctionPointer, Arg1, Arg2, Arg3, Arg4, Arg5 > Struct Template Reference


Detailed Description

template<typename T, typename FunctionPointer, typename Arg1, typename Arg2, typename Arg3, typename Arg4, typename Arg5>
struct QtConcurrent::StoredFunctorPointerCall5< T, FunctionPointer, Arg1, Arg2, Arg3, Arg4, Arg5 >

Definition at line 1137 of file qtconcurrentstoredfunctioncall.h.

#include <qtconcurrentstoredfunctioncall.h>

Inheritance diagram for StoredFunctorPointerCall5< T, FunctionPointer, Arg1, Arg2, Arg3, Arg4, Arg5 >:
Inheritance graph
[legend]

List of all members.

Public Member Functions

  StoredFunctorPointerCall5 (FunctionPointer *_function, const Arg1 &_arg1, const Arg2 &_arg2, const Arg3 &_arg3, const Arg4 &_arg4, const Arg5 &_arg5)
void  runFunctor ()

Public Attributes

FunctionPointer *  function
Arg1  arg1
Arg2  arg2
Arg3  arg3
Arg4  arg4
Arg5  arg5

Constructor & Destructor Documentation

StoredFunctorPointerCall5 ( FunctionPointer *  _function,
const Arg1 &  _arg1,
const Arg2 &  _arg2,
const Arg3 &  _arg3,
const Arg4 &  _arg4,
const Arg5 &  _arg5 
) [inline]

Definition at line 1139 of file qtconcurrentstoredfunctioncall.h.

      : function(_function), arg1(_arg1), arg2(_arg2), arg3(_arg3), arg4(_arg4), arg5(_arg5) {}

Member Function Documentation

void runFunctor ( ) [inline, virtual]

Implements RunFunctionTaskBase< T >.

Definition at line 1141 of file qtconcurrentstoredfunctioncall.h.

{ this->result =(*function)(arg1, arg2, arg3, arg4, arg5); }

Member Data Documentation

FunctionPointer* function

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