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


Detailed Description

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

Definition at line 441 of file qtconcurrentstoredfunctioncall.h.

#include <qtconcurrentstoredfunctioncall.h>

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

List of all members.

Public Member Functions

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

Constructor & Destructor Documentation

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

Definition at line 444 of file qtconcurrentstoredfunctioncall.h.

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

Member Function Documentation

void runFunctor ( ) [inline, virtual]

Implements RunFunctionTaskBase< T >.

Definition at line 447 of file qtconcurrentstoredfunctioncall.h.

    {
        this->result = (object->*fn)(arg1);
    }

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