VoidStoredMemberFunctionCall1< T, Class, Param1, Arg1 > Class Template Reference


Detailed Description

template<typename T, typename Class, typename Param1, typename Arg1>
class QtConcurrent::VoidStoredMemberFunctionCall1< T, Class, Param1, Arg1 >

Definition at line 340 of file qtconcurrentstoredfunctioncall.h.

#include <qtconcurrentstoredfunctioncall.h>

Inheritance diagram for VoidStoredMemberFunctionCall1< T, Class, Param1, Arg1 >:
Inheritance graph
[legend]

List of all members.

Public Member Functions

  VoidStoredMemberFunctionCall1 (T(Class::*_fn)(Param1), const Class &_object, const Arg1 &_arg1)
void  runFunctor ()

Constructor & Destructor Documentation

VoidStoredMemberFunctionCall1 ( T(Class::*)(Param1)  _fn,
const Class &  _object,
const Arg1 &  _arg1 
) [inline]

Definition at line 343 of file qtconcurrentstoredfunctioncall.h.

    : fn(_fn), object(_object), arg1(_arg1){ }

Member Function Documentation

void runFunctor ( ) [inline, virtual]

Implements RunFunctionTaskBase< T >.

Definition at line 346 of file qtconcurrentstoredfunctioncall.h.

    {
        (object.*fn)(arg1);
    }

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