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


Detailed Description

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

Definition at line 457 of file qtconcurrentstoredfunctioncall.h.

#include <qtconcurrentstoredfunctioncall.h>

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

List of all members.

Public Member Functions

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

Constructor & Destructor Documentation

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

Definition at line 460 of file qtconcurrentstoredfunctioncall.h.

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

Member Function Documentation

void runFunctor ( ) [inline, virtual]

Implements RunFunctionTaskBase< T >.

Definition at line 463 of file qtconcurrentstoredfunctioncall.h.

    {
        (object->*fn)(arg1);
    }

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