VoidStoredConstMemberFunctionCall3< T, Class, Param1, Arg1, Param2, Arg2, Param3, Arg3 > Class Template Reference


Detailed Description

template<typename T, typename Class, typename Param1, typename Arg1, typename Param2, typename Arg2, typename Param3, typename Arg3>
class QtConcurrent::VoidStoredConstMemberFunctionCall3< T, Class, Param1, Arg1, Param2, Arg2, Param3, Arg3 >

Definition at line 799 of file qtconcurrentstoredfunctioncall.h.

#include <qtconcurrentstoredfunctioncall.h>

Inheritance diagram for VoidStoredConstMemberFunctionCall3< T, Class, Param1, Arg1, Param2, Arg2, Param3, Arg3 >:
Inheritance graph
[legend]

List of all members.

Public Member Functions

  VoidStoredConstMemberFunctionCall3 (T(Class::*_fn)(Param1, Param2, Param3) const, const Class &_object, const Arg1 &_arg1, const Arg2 &_arg2, const Arg3 &_arg3)
void  runFunctor ()

Constructor & Destructor Documentation

VoidStoredConstMemberFunctionCall3 ( T(Class::*)(Param1, Param2, Param3) const  _fn,
const Class &  _object,
const Arg1 &  _arg1,
const Arg2 &  _arg2,
const Arg3 &  _arg3 
) [inline]

Definition at line 802 of file qtconcurrentstoredfunctioncall.h.

    : fn(_fn), object(_object), arg1(_arg1), arg2(_arg2), arg3(_arg3){ }

Member Function Documentation

void runFunctor ( ) [inline, virtual]

Implements RunFunctionTaskBase< T >.

Definition at line 805 of file qtconcurrentstoredfunctioncall.h.

    {
        (object.*fn)(arg1, arg2, arg3);
    }

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